Possible Duplicate:
What’s the difference between “Array()” and “[]” while declaring a JavaScript array?

In JavaScript you can create a new array like:

var arr = new Array();

or like:

var arr2 = [];

What is the difference and why would you do one over the other?

link|improve this question

As far as I know, it does the same thing. Use whichever you prefer. – zneak Feb 4 '10 at 22:33
5  
wow, insane that the dupe detector didn't detect this when I was asking the question. The questions are nearly identical... – cmcculloh Feb 4 '10 at 22:42
feedback

closed as exact duplicate by Judah Himango, Dour High Arch, John Knoeller, Crescent Fresh, Shog9 Feb 5 '10 at 9:23

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 3 down vote accepted

new Array(2) proudces an array of size 2, containing two undefineds. [2] produces an array of size 1, containing number 2. new Array IMO doesn't fit with the spirit of JavaScript, even though it may make array construction much more findable. That may or may not be of any importance (I use literals almost exclusively in JavaScript for all applicable types, and I've authored/maintained large pieces of JavaScript [30-50 KLOC] successfully).

edit I guess the reasons seasoned javascript programmers avoid new Array syntax are:

  • it doesn't behave uniformly across argument numbers and types ((new Array(X)).length == 1 for any X as long as typeof(X) != "number"
  • it's more verbose and the only thing you gain is the irregularity
link|improve this answer
The first bullet point is perfect. That's exactly the kind of thing I was looking for. Thanks! – cmcculloh Feb 4 '10 at 23:05
feedback

Another (minor) reason to use [] in preference to new Array() is that Array could potentially be overridden (though I've never seen it happen) and [] is guaranteed to work.

Array = "something";
var a = new Array(); // Fails
var b = []; // Works
link|improve this answer
feedback

I believe they're identical. I never use new Array();

link|improve this answer
Agree, two ways to make the same thing – anthares Feb 4 '10 at 22:35
but WHY don't you use new Array()? I know most "experienced" JavaScript developers don't, but why not? – cmcculloh Feb 4 '10 at 22:37
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.