Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
122
rated 0 times [  124] [ 2]  / answers: 1 / hits: 42238  / 14 Years ago, thu, september 23, 2010, 12:00:00

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?


More From » variables

 Answers
4

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.


[#95518] Wednesday, September 22, 2010, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
beatriceisabelad

Total Points: 710
Total Questions: 107
Total Answers: 99

Location: Cayman Islands
Member since Sat, Sep 17, 2022
2 Years ago
;