In JQuery and other libraries i keep seeing a $ sign before constructors. Why?
|
|
|
One website told me this:
|
|||
|
|
|
|
|||
|
|
|
In JavaScript identifier can start with _ OR $ or Character. And $ is valid to be used in identifiers. In the JavaScript frameworks(like JQuery) $ is very nicely used. However its always suggested as good practice not to user the $ for identifiers. |
|||
|
|
Check out this article. |
|||
|
|
|
The $ sign does not have any special meaning in JavaScript, unlike languages like Perl or PHP, where it's used to indicate that something is a variable. So when you see something like You see a lots of dollars out there because many popular JavaScript libraries have chosen a single $ as a name for their main object. It's short and handy to have a function you can call with An example in jQuery:
|
|||
|
|