Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the differences and/or advantages, if any, of using commas when declaring a group of variables rather than semicolons.

For example:

var foo = 'bar', bar = 'foo';

versus

var foo = 'bar';
var bar = 'foo';

I know that if you specify the var keyword on the first variable in the first example it persists across all of the variables, so they both produce the same end result regarding scope. Is it just personal preference, or is there a performance benefit to doing it either way?

share|improve this question

8 Answers

up vote 10 down vote accepted

No performance benefit, just a matter of personal choice and style.

The first version is just more succinct.


Update:

In terms of the amount of data going over the wire, of course less is better, however you would need a hell of a lot of removed var declarations in order to see a real impact.

Minification has been mentioned as something that the first example will help with for better minification, however, as Daniel Vassallo points out in the comments, a good minifier will automatically do that for you anyways, so in that respect no impact whatsoever.

share|improve this answer
5  
There is a performance benefit when minifying your javascript. – Ryan Kinal Sep 23 '10 at 18:53
@Ryan Kinal - where exactly in the question do you see minifying mentioned? – Oded Sep 23 '10 at 18:54
@Oded -- minification is in-line with performance concerns. Therefore, if one style lends itself to better minification, then it lends itself indirectly to performance concerns – STW Sep 23 '10 at 19:03
I guess if you're declaring a lot of variables in different scopes you're saving yourself, what, 4 bytes per variable? That adds up. – Collin Klopfenstein Sep 23 '10 at 19:04
3  
@Ryan: Good minifiers, like the Google Closure Compiler will merge multiple var statements into one: img840.imageshack.us/img840/3601/closurecompilerservice.jpg – Daniel Vassallo Sep 23 '10 at 19:04
show 2 more comments

Fun Fact of the Day: In Javascript you can use commas to group any number of expressions into a single statement. This is basicly an artifact of the for statement, where multiple assignment expressions are often grouped together in the header. Most people do not know that such syntax is still valid outside a for loop. So you can do this

var i=0;
while(i < 10)
  alert(i + ' * ' + i + ' = '),
  alert(i * i + '!!'),
  i++;

alert("Wasn't that fun??");

Instead of

var i=0;
while(i < 10) {
  alert(i + ' * ' + i + ' = ');
  alert(i * i + '!!');
  i++;
}

alert("Wasn't that fun??");

Though most people would advise you not to.

Statements, such as var, cannot be used this way. That is you cannot have var in the middle of a bunch of other comma separated expressions.

Anyway...the more you know...

share|improve this answer

As others have noted, it is a style preference. JSLint might tell you to only have one var per function (if you use the "Good Parts"). Thus if using JSLint to check your code (not a bad idea, IMHO), you'll end up using the first format more than the latter.

On the other hand, the same author, Douglas Crockford, says to put each variable in its own line in his coding conventions. So you may want to uncheck the "All one var per function" checkbox in JSLint if you use it. ;-)

share|improve this answer

If you are minifying your javascript, there is a fairly large benefit:

var one, two, three, four;

becomes

var a, b, c, d;

Where as

var one;
var two;
var three;
var four;

becomes

var a;
var b;
var c;
var d;

That's an additional three instances of var, which can add up over time.

See The "A List Apart" article series "Better Javascript Minification" Part 1 and Part 2

share|improve this answer
1  
Good minifiers, like the Google Closure Compiler will merge multiple var statements into one: img840.imageshack.us/img840/3601/closurecompilerservice.jpg. Therefore this argument stands only if you're using a less smart minifier... which you should't :) – Daniel Vassallo Sep 23 '10 at 19:04
And if you’re gzipping, the repeated var s won’t appreciably increase the gzipped file size (if I understand gzipping correctly). – Paul D. Waite Feb 29 '12 at 10:39

I agree with the other answerers that this is mainly a matter of personal style. But to bring an "Authoritative" opinion into the discussion, this is what Douglas Crockford says on the website of the popular JSLint tool:

But because JavaScript does not have block scope, it is wiser to declare all of a function's variables at the top of the function. It is recommended that a single var statement be used per function. This can be enforced with the onevar option.

share|improve this answer

I don't think there's any noticeable difference, as far as I'm concerned it's just personal preference.

I hate having multiple var declarations so I usually do:

var 
   one
  ,two
  ,three
  ,four
;

As it's shorter and arguably more readable, no var noise to look at.

share|improve this answer
8  
keyword on "arguably". If I found this sample in ours it would become var one, two, three four; very quickly. Adding lines-for-the-sake-of-lines in Javascript can be dangerous (JS interpreters can insert their own ;--if you don't anticipate this then you'll quickly find side-effects. Also, leading ,'s bug me, keywords getting their own line bug me, the ; on it's own line bugs me. Are you paid by-the-line? – STW Sep 23 '10 at 18:39
3  
@STW - You make automatic semicolon insertion sound like a random thing, subject to the whims of individual browsers, but in reality it only occurs according to a well-defined set of rules and you don't have to worry that it might happen in the middle of your var declaration. (Though I agree with you about leading commas, and about var and the final semicolon being on their own lines - all three bug me too.) – nnnnnn Feb 29 '12 at 11:10
@nnnnnn -- true enough – STW Feb 29 '12 at 12:42

The first saves a few characters--so there is a very small saving in terms of the JS filesize and therefore bandwidth consumption. The only time this would become noticable would be in extreme cases.

share|improve this answer

I prefer the second version (each has its own var). I think that's because I come from a C++ background. In C++, you can declare variables like you do in your first example, but it is frowned upon (it easily leads to mistakes when you're trying to create pointers that way).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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