Array = function() { };
var x = new Array();
// x is now an Object instead of an Array.
In other words, [] is unambiguous.
Array = function() { };
var x = new Array();
// x is now an Object instead of an Array.
In other words, [] is unambiguous.