In JavaScript you can get and set indexes of arrays and "numeric" properties of objects using either an integer or a string and get the same results:
var a=[], o={};
a[1] = "foo"; a["1"] == "foo" // true
a["2"] = "bar"; a[2] == "bar" // true
a["-3"] = "baz"; a[-.3e1] == "baz" // true
o[1] = "foo"; o["1"] == "foo" // true
o["2"] = "bar"; o[2] == "bar" // true
o["-3"] = "baz"; o[-.3e1] == "baz" // true
While strings and numbers are interopable—for both getting and setting—which is faster (for both arrays and for objects)?


var o={},a=[];o[a]=2;alert(o[""])– Lekensteyn May 17 '12 at 16:21a[1]anda["1"]occupy the same slot. For objectso[{}]ando["[object Object]"]also occupy the same slot – Juan Mendes May 17 '12 at 16:23var a=[];a["42"]=1;a.length==43– Lekensteyn May 17 '12 at 16:25