9 lines
121 B
JavaScript
9 lines
121 B
JavaScript
|
|
var foo = 'foo'
|
|
, bar = 'bar'
|
|
, baz = 'baz'
|
|
, test;
|
|
|
|
console.log(foo = 'hey');
|
|
console.log(bar);
|
|
console.log(baz); |