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?

link|improve this question

2  
I saw the recent question where someone said that to you, but they only meant for Arrays. It is considered bad practice for iterating through arrays but not necessarily for iterating through members of an object. – mmurch Nov 23 '10 at 21:21
1  
Lots of answers with "for" loops such as 'for (var i=0; i<hColl.length; i++) {}' compare to 'var i=hColl.length; while (i--) {}' which, when it is possible to use the latter form it is substantially faster. I know this is tangential but thought I would add this bit. – Mark Schultheiss Jun 22 '11 at 15:06
feedback

13 Answers

up vote 114 down vote accepted

The reason is that one construct...

var a = [];
a[5] = 5; // Perfectly legal Javascript that resizes array

for (var i=0; i<a.length; i++) {
    // Iterates over numeric indexes from 0 to 5, as everyone expects
}

can sometimes be totally different from the other...

var x, a = [];
a[5] = 5;
for (x in a) {
    // Shows only the explicitly set index of "5", and ignores 0-4
}

Also consider that Javascript libraries often do things like this, which will affect any array you create:

// Somewhere deep in your javascript library...
Array.prototype.foo = 1;

// Now you have no idea what the below code will do.
var x, a = [1,2,3,4,5];
for (x in a){
    // Now foo is a part of EVERY array and 
    // will show up here as a value of 'x'
}
link|improve this answer
2  
The second example is wrong. length is DontEnum, which means it will not be iterated over. It is only when you add you own properties you get a problem. – JacquesB Feb 1 '09 at 10:43
13  
Historically, some browsers even iterated over 'length', 'toString' etc.! – bobince Feb 1 '09 at 12:14
45  
Remember to use (var x in a) rather than (x in a) - don't want to create a global. – Chris Morgan Nov 25 '10 at 2:24
3  
First issue isn't a reason it's bad, only a difference in semantics. Second issue seems to me a reason (on top of clashes between libraries doing the same) that altering the prototype of a built-in datatype is bad, rather than that for..in is bad. – Stewart Mar 1 '11 at 0:52
4  
@Stewart: All objects in JS are associative. A JS Array is an object, so yes, it’s associative too, but that’s not what it’s for. If you want to iterate over an object's keys, use for (var key in object). If you want to iterate over an array’s elements, however, use for(var i = 0; i < array.length; i += 1). – Martijn Mar 1 '11 at 15:15
show 8 more comments
feedback

The for-in statement by itself is not a "bad practice", however it can be mis-used, for example, to iterate over arrays or array-like objects.

The purpose of the for-in statement is to enumerate over object properties, this statement will go up in the prototype chain, enumerating also inherited properties, thing that sometimes is not desired.

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:

var array = [];
array[2] = 'c';
array[1] = 'b';
array[0] = 'a';

for (var p in array) {
  //... p will be 2, 1 and 0 on IE
}

Also, speaking about inherited properties, if you, for example, extend the Array.prototype object (like some libraries as MooTools do), that properties will be also enumerated:

Array.prototype.last = function () { return this[this.length-1]; };

for (var p in []) { // an empty array
  // last will be enumerated
}

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 for/while loop.

When you want to enumerate only the own properties of an object (the ones that aren't inherited), you can use the hasOwnProperty method:

for (var prop in obj) {
  if (obj.hasOwnProperty(prop)) {
    // prop is not inherited
  }
}

And some people even recommend calling the method directly from Object.prototype to avoid having problems if somebody adds a property named hasOwnProperty to our object:

for (var prop in obj) {
  if (Object.prototype.hasOwnProperty.call(obj, prop)) {
    // prop is not inherited
  }
}
link|improve this answer
2  
See also David Humphrey's post Iterating over Objects in JavaScript Quickly - for array's for..in is much slower than "normal" loops. – Chris Morgan Nov 25 '10 at 2:25
1  
Question about the last point about "hasOwnProperty": If someone overrides "hasOwnProperty" on an object, you'll have problems. But won't you have the same problems if someone overrides "Object.prototype.hasOwnProperty"? Either way they're screwing you up and it's not your responsibility right? – Scott Rippey Jan 14 '11 at 0:08
I found this in a JQuery plugin that was behaving badly in a complex JS framework I use. Array had a bunch of prototype method additions, and sure enough the iterator kept going right through the method names after having the integer array index values! THANK YOU! – Bob Denny Aug 29 '11 at 14:55
You're welcome @Bob! – CMS Aug 29 '11 at 14:59
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 length, toString and so on are not included in the iteration.)

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:

for (var ix=0;i<arr.length;ix++) alert(ix);

However, this have a different issue. The issue is that a JavaScript array can have "holes". If you define arr as:

var arr = ["hello"];
arr[100] = "goodbuy";

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 undefined.

link|improve this answer
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.

Array.prototype.myOwnFunction = function() { alert(this); }
a = new Array();
a[0] = 'foo';
a[1] = 'bar';
for(x in a){
 document.write(x + ' = ' + a[x]);
}

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:

for(i=0,x=a.length;i<x;i++){
 document.write(i + ' = ' + a[i]);
}

This will write:

0 = foo
1 = bar
link|improve this answer
feedback

There are three reasons why you shouldn't use for..in to iterate over array elements:

  • for..in will loop over all own and inherited properties of the array object which aren't DontEnum; that means if someone adds properties to the specific array object (there are valid reasons for this - I've done so myself) or changed Array.prototype (which is considered bad practice in code which is supposed to work well with other scripts), these properties will be iterated over as well; inherited properties can be excluded by checking hasOwnProperty(), but that won't help you with properties set in the array object itself

  • for..in isn't guaranteed to preserve element ordering

  • it's slow because you have to walk all properties of the array object and its whole prototype chain and will still only get the property's name, ie to get the value, an additional lookup will be required

link|improve this answer
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,

for (var i=0; i<a.length; i++) {
    document.write(i + ', ' + typeof i + ', ' + i+1);
}

will write

0, number, 1
1, number, 2
...

whereas,

for (var ii in a) {
    document.write(i + ', ' + typeof i + ', ' + i+1);
}

will write

0, string, 01
1, string, 11
...

Of course, this can easily be overcome by including

ii = parseInt(ii);

in the loop, but the first structure is more direct.

link|improve this answer
You can use prefix + instead of parseInt unless you really need integer or ignore invalid characters. – GlitchMr Apr 24 at 17:19
feedback

Because it enumerates through object fields, not indexes. You can get value with index "length" and I doubt you want this.

link|improve this answer
So whats the best way of doing that? – lYriCAlsSH Feb 1 '09 at 9:57
1  
for (var i = 0; i < arr.length; i++) {} – vava Feb 1 '09 at 10:08
In firefox 3 you could also use either arr.forEach or for(var [i, v] in Iterator(arr)) {} but neither of those works in IE, although you can write forEach method yourself. – vava Feb 1 '09 at 10:09
and virtually every library has it's own method for this too. – vava Feb 1 '09 at 10:14
2  
This answer is wrong. "lenght" will not be included in for-in iteration. It is only properties you add yourself which is included. – JacquesB Feb 1 '09 at 10:59
feedback

Because it will iterate over properties belonging to objects up the prototype chain if you're not careful.

You can use for.. in, just be sure to check each property with hasOwnProperty.

link|improve this answer
Not enough - it's perfectly OK to add arbitrary named properties to array instances, and those will test true from hasOwnProperty() checks. – Pointy Nov 23 '10 at 21:27
Good point, thanks. I've never been silly enough to do that to an Array myself, so I haven't considered that! – JAL Nov 23 '10 at 23:49
feedback

The problem with for ... in ... — and this only becomes a problem when a programmer doesn't really understand the language; it's not really a bug or anything — is that it iterates over all members of an object (well, all iterable members, but that's a detail for now). When you want to iterate over just the indexed properties of an array, the only guaranteed way to keep things semantically consistent is to use an integer index (that is, a for (var i = 0; i < array.length; ++i) style loop).

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 for ... in does and really need to see all properties, well then that's ok too.

link|improve this answer
feedback

It's not necessarily bad (based on what you're doing), but in the case of arrays, if something has been added to Array.prototype, then you're going to get strange results. Where you'd expect this loop to run three times:

var arr = ['a','b','c'];
for (var key in arr) { ... }

If a function called helpfulUtilityMethod has been added to Array's prototype, then your loop would end up running four times: key would be 0, 1, 2, and helpfulUtilityMethod. If you were only expecting integers, oops.

link|improve this answer
feedback

You should use the for(var x in y) only on property lists, not on objects (as explained above).

link|improve this answer
4  
Just a note about SO - there is no 'above' because comments change order on the page all the time. So, we don't really know which comment you mean. It's good to say "in x person's comment" for this reason. – JAL Nov 24 '10 at 6:48
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 for (var i=0; i<=arrayLen; i++), and skip the auto-detection iteration.

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;

//Non-associative
var arr = ['a', 'b', 'c'];
for (var i in arr)
   alert(arr[i]);

//Associative
var arr = {
   item1 : 'a',
   item2 : 'b',
   item3 : 'c'
};
for (var i in arr)
   alert(arr[i]);
link|improve this answer
true, unless you are using prototyped objects. ;) below – Ricardo Nov 23 '10 at 21:49
Thats because Array is Object too – Free Consulting Nov 25 '10 at 0:56
feedback

Aside from the fact that for...in loops over all enumerable properties (which is not the same as "all array elements"!), see http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf, section 12.6.4:

The mechanics and order of enumerating the properties ... is not specified.

(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, for...in carries with it no connotation of order. If you care about order, be explicit about it and use a regular for loop with an index.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.