This question already has an answer here:
I read somewhere (sorry, I can't find the link) that the For...In loop is not recommended for arrays. It is said here: http://www.openjs.com/articles/for_loop.php that it is meant for associative arrays, and in http://www.w3schools.com/js/js_loop_for_in.asp that is for iterating through all the properties of an object (It does not say that it can be used on arrays). I do not know who to believe. I don't want this question to become a debate. I just want to know if I could use this in my code without unforeseen side effects. Thanks!
array = {}; array[42] = 'foo'; array["42"] // => 'foo' (!). For numbers this isn't that crazy, but with objects (which I would expect to be able to use as keys in an "associative array") it just doesn't work:var key1 = {name: 'Gareth'}, key2 = {}, array = {}; array[key1] = 'awesome'; array[key2] // => 'awesome' (!)In this case, both "keys" have the same.toString()so set the same property – Gareth Mar 11 '11 at 8:30