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 a difference, but 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! |
|||||||||||||||||||
|
|
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). |
|||||||||||
|
|
Oddly enough, |
||||
|
|
|
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:
|
|||||||||||||
|
|
Here is a piece of JavaScript code that will verify that both declarations lead to the same type:
|
|||||||
|
|
In order to better understand
The above result is from Google Chrome console on Windows 7. |
|||
|
|
|
I can explain in a more specific way starting with this example that's based on Fredrik's good one.
I just added another value to the arrays, and made four alerts: The first and second are to give us the value stored in each array, to be sure about the values. They will return the same! Now try the third one, it returns false, that's because
The first difference is when we call test1 it calls a variable without thinking, it just returns the values that are stored in this variable disregarding its data type! But, when we call test2 it calls the Array() function and then it stores our "Pushed" values in its "Value" property, and the same happens when we alert test2, it returns the "Value" property of the array object. So when we check if test1 equals test2 of course they will never return true, one is a function and the other is a variable (with a type of array), even if they have the same value! To be sure about that, try the 4th alert, with the .value added to it; it will return true. In this case we tell JS "Disregarding the type of the container, whether was it function or variable, please compare the values that are stored in each container and tell us what you've seen!" that's exactly what happens. I hope I said the idea behind that clearly, and sorry for my bad English. |
|||
|
|