Whats the real difference between declaring an array like this:
var myArray = new Array();
and
var myArray = [];
|
|
Whats the real difference between declaring an array like this:
and
|
|||
|
|
|
|
There is no difference in that example. Using the more verbose method:
To illustrate the different ways to create an array:
|
||||||
|
|
|
The difference between creating an array with the implicit array and the array constructor is subtle but important. When you create an array using
You're telling the interpreter to create a new runtime array. No extra processing necessary at all. Done. If you use:
You're telling the interpreter, I want to call the constructor "Array" and generate an object. It then looks up through your execution context to find the constructor to call, and calls it, creating your array. You may think "Well, this doesn't matter at all. They're the same!". Unfortunately you can't guarantee that. Take the following example:
In the above example, the first call will alert 'SPARTA' as you'd expect. The second will not. You will end up seeing undefined. You'll also note that b contains all of the native Array object functions such as 'push', where the other does not. While you may expect this to happen, it just illustrates the fact that '[]' is not the same as 'new Array()'. It's probably best to just use [] if you know you just want an array. I also do not suggest going around and redefining Array... Cheers! |
||||||
|
|
|
Here is a piece of JavaScript code that will verify that both declarations lead to the same type:
|
||||||
|
|
|
The first one is the default object constructor call. You can use it's parameters if you want.
The second one gives you the ability to create not empty array:
|
||||||||||||
|
|
|
For more information, the following page describes why you never need to use new Array(): http://yuiblog.com/blog/2006/11/13/javascript-we-hardly-new-ya/
Also check out the comments - the new Array(length) form does not serve any useful purpose (at least in today's implementations of JavaScript). |
||||||
|