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

In JavaScript, it is possible to declare multiple variables like this:

var variable1 = "Hello World!";
var variable2 = "Testing...";
var variable3 = 42;

...or like this:

var variable1 = "Hello World!",
    variable2 = "Testing...",
    variable3 = 42;

Is one method better/faster than the other?

Thanks,

Steve

share|improve this question

8 Answers

up vote 51 down vote accepted

The first way is easier to maintain. Each declaration is a single statement on a single line, so you can easily add, remove, and reorder the declarations.

With the second way, it is annoying to remove the first or last declaration because they contain the var keyword and semicolon. And every time you add a new declaration, you have to change the semicolon in the old line to a comma.

share|improve this answer
Good point! Thanks! – Steve Harrison Mar 29 '09 at 7:41
16  
If you're writing code that you expect to minify or pack later, the second way allows compressors (like the YUI Compressor) to give you a more minified version. If size is a consideration, then I would suggest following as many of JSLint's suggestions as possible. – Lane Aug 18 '11 at 21:48
6  
jslint claims that second way is more righteous but I disagree. – ThatGuy Sep 8 '11 at 4:32
5  
The second way is a micro-optimization. All the var declarations are processed at once, rather than one at a time. This doesn't matter that much in modern browsers/modern computers. – webnesto Apr 14 '12 at 0:19
@Lane This may be a stupid question, but, should I assume that all three variables inherently say var variableX when only the first one has the var prefix and they are comma separated? i.e. are the second two vars global if not preceeded with var? – Kristian Feb 8 at 21:21
show 1 more comment

Besides maintainability, the first way eliminates possibility of accident global variables creation:

(function () {
var variable1 = "Hello World!" // semicolon is missed out accidently
var variable2 = "Testing..."; // still a local variable
var variable3 = 42;
}());

While the second way is less forgiving:

(function () {
var variable1 = "Hello World!" // comma is missed out accidently
    variable2 = "Testing...", // becomes a global variable
    variable3 = 42; // a global variable as well
}());
share|improve this answer
1  
Good point. If they're short, then writing on a single line will avoid this problem: var variable1 = "Hello World!", variable2 = "Testing...", variable3 = 42;. A missing , will crash, but I agree it's risky – Aram Kocharyan Jan 16 '12 at 4:18
2  
If you're using strict mode you won't be able to create globals like this anyway. – Danyal Aytekin Oct 24 '12 at 10:42
I'm a fan of declaring multiple variables on a single line because I think it looks cleaner. That said, accidentally declaring global variables is a real danger. While hunting down memory leaks I have come across multiple instances where I accidentally declared several global variables at once because I used a semicolon instead of a comma. – smabbott Mar 6 at 15:26
+1 just spend half of the day and even started to wondering why there is undocumented difference between these two declarations. Then read this answer, checked code super carefully and found the mistake. Need a holiday... – Giedrius Apr 29 at 21:50

It's common to use one var statement per scope for organization. The way all "scopes" follow a similar pattern making the code more readable. Additionally, the engine "hoists" them all to the top anyway. So keeping your declarations together mimics what will actually happen more closely.

share|improve this answer
3  
You can keep the declarations together without making them sharing the same 'var' declaration. I understand and accept the explanations given at jslint (your link) but I don't share the conclusion. As said above, it is more matter of style than anything else. In the Java world (among others), the reverse (one declaration per line) is recommended for readability. – PhiLho May 19 '11 at 12:34
More readable? The only reason people put them on one line is the JS-specific reason you mentioned: JS moves all the declarations to the top. If it didn't do that, we would all be declaring our vars closest to the point where they are used. – Danyal Aytekin Oct 24 '12 at 10:45
@PhiLho: it's more than style, one var statement makes all variables appear to be defined in local scope, which is not the case - only the first variable is being defined locally, the others are just global variables. – vol7ron Mar 11 at 13:02

It's just a matter of personal preference. There is no difference between these two ways, other than a few bytes saved with the second form if you strip out the white space.

share|improve this answer
The second one saves a couple of bytes. – Ben Alpert Mar 29 '09 at 4:40
Ben Alpert: How do you figure? – Josh Stodola Mar 29 '09 at 4:47
If you strip out the whitespace, than the 'var foo="hello",bar="world";' declaration takes up fewer characters than 'var foo="hello";var bar="world";' If you have a popular site, saving a few bytes on the JS can help (you'd also want to minimize variable names, etc) – Brian Campbell Mar 29 '09 at 4:52
I see this the saved bytes as irrelevant at this time, due to the rise of JavaScript minifiers, notably the Google Closer Compiler's (so-called) simple mode. – George Bailey Mar 27 '12 at 16:08
This is an incorrect statement - there is a difference in how the runtime engine processes them (at least in older browsers, not sure about modern browsers). – webnesto Apr 14 '12 at 0:27
show 2 more comments

Maybe like this

var variable1 = "hello world"
, variable2 = 2
, variable3 = "how are you doing"
, variable4 = 42;

Except when changing the first or last variable it is easy to maintain and read.

share|improve this answer
3  
Typically, using comma-first, the semicolon goes on a new line to prevent that issue. var variable1 = "hello world"\n , variable2 = 2\n , variable3 = "how are you doing"\n , variable4 = 42\n ;\n – BrianFreud Jan 31 '12 at 4:08
var variable1 = "Hello World!";
var variable2 = "Testing...";
var variable3 = 42;

is more readable than:

var variable1 = "Hello World!",
    variable2 = "Testing...",
    variable3 = 42;

But they do the same thing.

share|improve this answer
Uses less "file space"? I think you have some explaining to do. – Josh Stodola Mar 29 '09 at 4:46

Better to maintain by having it like this:

var hey = 23;
var hi = 3;
var howdy 4;

But when you are done programming, you can choose to compress it a little bit by adding them like this:

var hey=23,hi=3,howdy=4;

Dose not really help if you just have a small amount of variables to maintain, but on large projects this can be ideal to save space. But just keep in mind that many JavaScript compressors already do that.

share|improve this answer

My only, yet essential use for comma is in a for loop:

for (var i = 0, n = a.length; i < n; i++) {
  var e = a[i];
  console.log(e);
}

I went here to look up whether this is OK in JavaScript.

Even seeing it work, a question remained whether n is local to the function.

This verifies, n is local:

a=[3,5,7,11];
(function l () { for (var i = 0, n = a.length; i < n; i++) {
  var e = a[i];
  console.log(e);
}}) ();
console.log(typeof n == "undefined" ?
  "as expected, n was local" : "oops, n was global");

For a moment I wasn't sure, switching between languages.

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.