What is the difference between the ID selector and class selector in jQuery?

What is the difference between the ID selector and class selector in jQuery?

In Class selector, the name starts with a dot(.) whereas in ID selector, the name starts with a hash(#) symbol. The ID selector can be used to identify only one element whereas class selector can be used to identify more than one element.