I see a lot of javascript code that does this:
var a = something,
b = else,
c = foo;
Like every coding style issue, this is all a matter of taste and consistency but I wonder if there is a specific technical rationale behind this as opposed to:
var a = something;
var b = else;
var c = foo;