I quite often see JavaScript with variables that start with a dollar sign. When/why would you choose to prefix a variable in this way?

(I'm not asking about $('p.foo') syntax that you see in jQuery and others, but normal variables like $name and $order)

link|improve this question

feedback

12 Answers

up vote 150 down vote accepted

A very common use in jQuery is to distinguish jQuery objects stored in variables from other variables. For example, I would define

var $email = $("#email"); // refers to the jQuery object representation of the dom object
var email_field = $("#email").get(0); // refers to the dom object itself

I find this to be very helpful in writing jQuery code and makes it easy to see jQuery objects which have a different set of properties.

link|improve this answer
6  
+1 I too have adopted this and find it helpful! – alex Jan 6 '10 at 0:47
I like this convention too. – user457104 Aug 2 '11 at 16:20
2  
And I use $this = $(this) a lot! – kroimon Dec 5 '11 at 13:56
hey @ken, you wanna set this as the ticked answer?! – Jonny Nott Jan 19 at 19:40
This should be the accepted answer – Juan Mendes Apr 25 at 19:39
feedback

As others have mentioned the dollar sign is intended to be used by mechanically generated code. However, that convention has been broken by some wildly popular JavaScript libraries. JQuery, Prototype and MS AJAX (AKA Atlas) all use this character in their identifiers (or as an entire identifier).

In short you can use the $ whenever you want. (The interpreter won't complain.) The question is when do you want to use it?

I personally do not use it, but I think its use is valid. I think MS AJAX uses it to signify that a function is an alias for some more verbose call.

For example:

var $get = function(id) { return document.getElementById(id); }

That seems like a reasonable convention.

link|improve this answer
feedback

As far as I can see, it's not recommended to use because the ECMAScript specification states that:

The dollar sign ($) and the underscore (_) are permitted anywhere in an identifier. The dollar sign is intended for use only in mechanically generated code.

Update: The above refers to ECMA-262 3.0. However, this is no longer the latest edition. Currently, 5.1 is the latest edition. In ECMA-262 5.1 the above text is changed to:

The dollar sign ($) and the underscore (_) are permitted anywhere in an IdentifierName.

That is, it seems that they dropped the "restriction" or whatever you want to call it.

link|improve this answer
Not recommended, but also not forbidden. – kroimon Dec 5 '11 at 13:57
Why not recommended? – Gary Mar 9 at 15:09
feedback

It's probably a habit picked up from Perl programming.

(edit: or PHP)

link|improve this answer
2  
PHP guys do that too. – Mnebuerquo Oct 15 '08 at 18:28
ditto on the PHP, you might just edit your response to say that brien. – Anthony Potts Oct 15 '08 at 18:30
8  
PHP requires it. – eyelidlessness Oct 15 '08 at 18:32
9  
QBASIC does it as well... – matt lohkamp Oct 15 '08 at 23:53
3  
we can now!!!! ahahah – Claudiu May 11 '09 at 3:04
show 1 more comment
feedback

Some languages require it, such as PHP or Perl - I'm guessing that the dev didn't remember that it's not needed in javascript.

link|improve this answer
or they didn't want to be bothered to drop the habit. This is most likely the correct answer, since so many developers who hack together their own webpage do so using PHP and javascript. – BlueRaja - Danny Pflughoeft Jul 20 '11 at 22:08
feedback

While you can simply use it to prefix your identifiers, it's supposed to be used for generated code, such as replacement tokens in a template, for example.

link|improve this answer
feedback

The $ character has no special meaning to the JavaScript engine. It's just another valid character in a variable name like a-z, A-Z, _, 0-9, etc...

link|improve this answer
true but not what was asked. I came here wanting to understand why it was used and it seems that the case where I was seeing it was to discern a var containing a jquery object between a var containing a dom object. – rtpHarry Jun 1 '11 at 22:42
feedback

Stevo is right, the meaning and usage of the dollar script sign (in Javascript and the jQuery platform, but not in PHP) is completely semantic. $ is a character that can be used as part of an identifier name. In addition, the dollar sign is perhaps not the most "weird" thing you can encounter in Javascript. Here are some examples of valid identifier names:

var _       = function() { alert("hello from _"); }
var \u0024  = function() { alert("hello from $ defined as u0024"); }
var Ø       = function() { alert("hello from Ø"); }
var $$$$$   = function() { alert("hello from $$$$$"); }

All of the examples above will work.

Try them.

link|improve this answer
feedback

The reason I sometimes use php name-conventions with javascript variables: When doing input validation, I want to run the exact same algorithms both client-side, and server-side. I really want the two side of code to look as similar as possible, to simplify maintenance. Using dollar signs in variable names makes this easier.

(Also, some judicious helper functions help make the code look similar, e.g. wrapping input-value-lookups, non-OO versions of strlen,substr, etc. It still requires some manual tweaking though.)

link|improve this answer
you need examples. – alex gray Jan 20 at 1:51
feedback

If you see the dollar sign ($) or double dollar sign ($$), and are curious as to what this means in the Prototype framework, here is your answer:

$$('div');
// -> all DIVs in the document.  Same as document.getElementsByTagName('div')!

$$('#contents');
// -> same as $('contents'), only it returns an array anyway (even though IDs must be unique within a document).

$$('li.faux');
// -> all LI elements with class 'faux'

Source:
http://www.prototypejs.org/api/utility/dollar-dollar

link|improve this answer
feedback

I use var $x to tell between apples and oranges (to know that I am dealing with a variable).
It's easy to see and to identify right away.



Besides, PHP variables are also $x, so it's much easier to go back and forth

link|improve this answer
feedback

Angular uses is for properties generated by the framework. Guess, they are going by the (now defunct) hint provided by the ECMA-262 3.0.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.