I've been told not to use "for...in" with Arrays in JavaScript but never received a satisfactory reason as to why not.
The question is: Why is using "for ...in" with array iteration such a bad idea?
|
I've been told not to use "for...in" with Arrays in JavaScript but never received a satisfactory reason as to why not. The question is: Why is using "for ...in" with array iteration such a bad idea?
| |||||||||
feedback
|
|
The reason is that one construct...
can sometimes be totally different from the other...
Also consider that Javascript libraries often do things like this, which will affect any array you create:
| |||||||||||||||||||||
feedback
|
|
The The purpose of the Also, the order of iteration is not guaranteed by the spec., meaning that if you want to "iterate" an array object, with this statement you cannot be sure that the properties (array indexes) will be visited in the numeric order. For exmample, in JScript (IE <= 8), the order of enumeration even on Array objects is defined as the properties were created:
Also, speaking about inherited properties, if you, for example, extend the
As I said before to iterate over arrays or array-like objects, the best thing is to use a sequential loop, such as a plain-old When you want to enumerate only the own properties of an object (the ones that aren't inherited), you can use the
And some people even recommend calling the method directly from
| |||||||||||||
feedback
|
|
In isolation, there is nothing wrong with using for-in on arrays. For-in iterates over the property names of an object, and in the case of an "out-of-the-box" array, the properties corresponds to the array indexes. (The built-in propertes like However, if your code (or the framework you are using) add custom properties to arrays or to the array prototype, then these properties will be included in the iteration, which is probably not what you want. Some JS frameworks, like Prototype modifies the Array prototype. Other frameworks like JQuery doesn't, so with JQuery you can safely use for-in. If you are in doubt, you probably shouldn't use for-in. An alternative way of iterating through an array is using a for-loop:
However, this have a different issue. The issue is that a JavaScript array can have "holes". If you define
Then the array have two items, but a length of 100. Using for-in will yield two indexes, while the for-loop will yield 101 indexes, where the 99 has a value of | ||||
|
feedback
|
|
Because for...in enumerates through the object that holds the array, not the array itself. If I add a function to the arrays prototype chain, that will also be included. I.e.
This will write:
0 = foo
1 = bar
myOwnFunction = function() { alert(this; }
And since you can never be sure that nothing will be added to the prototype chain just use a for loop to enumerate the array:
This will write: 0 = foo 1 = bar | ||||
|
feedback
|
|
There are three reasons why you shouldn't use
| ||||
|
feedback
|
|
In addition to the reasons given in other answers, you may not want to use the "for...in" structure if you need to do math with the counter variable because the loop iterates through the names of the object's properties and so the variable is a string. For example,
will write
whereas,
will write
Of course, this can easily be overcome by including
in the loop, but the first structure is more direct. | |||
feedback
|
|
Because it enumerates through object fields, not indexes. You can get value with index "length" and I doubt you want this. | |||||||||||||||
feedback
|
|
Because it will iterate over properties belonging to objects up the prototype chain if you're not careful. You can use | |||||
feedback
|
|
The problem with Any object can have arbitrary properties associated with it. There would be nothing terrible about loading additional properties onto an array instance, in particular. Code that wants to see only indexed array-like properties therefore must stick to an integer index. Code that is fully aware of what | |||
|
feedback
|
|
It's not necessarily bad (based on what you're doing), but in the case of arrays, if something has been added to
If a function called | |||
|
feedback
|
|
You should use the | |||||
feedback
|
|
the for/in works with two types of variables: hashtables(associative arrays) and array(non-associative). Javascript will automatically determine the way its passes through the items. So if you know that your array is really non-associative you can use But in my opinion its better to use for/in, the process required for that auto-detection is very little. A real answer for this will depend on how the browser parsers/interpret the javascript. It can change between browsers. I can't think of other purposes to not using for/in;
| |||||
|
feedback
|
|
Aside from the fact that
(Emphasis mine.) That means if a browser wanted to, it could go through the properties in the order in which they were inserted. Or in numerical order. Or in lexical order (where "30" comes before "4"! Keep in mind all object keys -- and thus, all array indexes -- are actually strings, so that makes total sense). It could go through them by bucket, if it implemented objects as hash tables. Or take any of that and add "backwards". A browser could even iterate randomly and be ECMA-262 compliant, as long as it visited each property exactly once. In practice, most browsers currently like to iterate in roughly the same order. But there's nothing saying they have to. That's implementation specific, and could change at any time if another way was found to be far more efficient. Either way, | ||||
|
feedback
|