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!
|
An array is an object, and array elements are simply properties with the numeric index converted to string. For example, arr[123] refers to a property "123" in the array object arr. The When somebody That's why you shouldn't do it. You shouldn't use a language construct that looks like it does obvious things, but actually does things that are completely different. It creates bugs that are very obscure and very difficult to find. |
|||||
|
|
A couple of good reasons are given in the Prototype.js library documentation: http://www.prototypejs.org/api/array Basically, using for...in to iterate an array is brittle since any other code can add properties to the Array prototype, which will then become enumerable properties on every array object. |
|||
|
|
|
I've tested array iteration in several browsers (FireFox 3, Opera 9, IE6, IE9 beta, Chrome) and it works fine; I seem to recall some cross-browser incompatibility but I must be mistaken. There is still a caveat though: As you've mentioned, the |
|||||||||
|
|
Iterating over an array using It will get you properties defined on the prototype, so if any code extends
then you will see the property There is no gaurantee that you will get the properties in array index order. E.g. try iterating over
On a lot of browsers you will get And you are not guaranteed to get all indices. Try iterating over
you will not get the index |
|||
|
|
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