For Example,
//pattern one
function Foo() {
var hello
, world
, how = []
, are
, you = 'you';
}
//pattern two
function Foo() {
var hello;
var world;
var how = [];
var are;
var you = 'you';
}
Would it be more memory efficient to use pattern one, versus pattern 2? Are there other benefits one provides over the other?