There are two ways to create an array using the array constructor
new Array(1,2,3)
Array(1,2,3)
I would say that the first (with the new keyword) is preferred or is it of no importance ?
UPDATE: In my case I use this type of array construction because I do:
new Array(someNum).join('x');
[1,2,3]. ;-)