Should we write
var a = [ 'a', 'b', 'c', ];
var b = { '1', '2', '3', };
or
var a = [ 'a', 'b', 'c' ];
var b = { '1', '2', '3' };
What is the most correct way?
I've noticed that old versions of IE raise error if there is comma expecting there would be a another array item (or property) after comma.