What\'s the real difference between declaring an array like this:
var myArray = new Array();
and
var myArray = []; <
var myArray = [];
Using the Array constructor makes a new array of the desired length and populates each of the indices with undefined, the assigned an array to a variable one creates the indices that you give it info for.