slimit
slimit copied to clipboard
Optimize consecutive declarations
var a = 10; var b = 20; ==> var a=10,b=20;
var a=10; var b=a;
=> var a=10,b=a;
. Is that case safe also? I.e. is the order of initialisation defined on all implementations one might reasonably care about?