Do you think there is a big difference in for...in and for loops? What kind of "for" do you prefer to use and why?

Let's say we have an array of associative arrays:

var myArray = [{'key': 'value'}, {'key': 'value1'}];

So we can iterate:

for (var i = 0; i < myArray.length; i++)

And:

for (var i in myArray)

I don't see a big difference. Are there any performance issues?

link|improve this question

39  
There is no need to iterate while "i <= myArray.length - 1", use "i < myArray.length" instead. – Tomalak Oct 28 '08 at 11:07
4  
Note that we also, as of JS 1.6, have: myArray.forEach(callback[, thisarg]). – Benji XVI Jan 6 at 10:32
2  
@Benji array.forEach is actually in ES5. – nailer Jan 11 at 20:59
in a for-in loop you need a conditional that looks like this: if(myArray.hasOwnProperty(i)){true} – Relic Mar 27 at 22:18
feedback

17 Answers

up vote 234 down vote accepted

The choice should be based on the which idiom is best understood.

An array is iterated using:

for (var i = 0; i < a.length; i++)
   //do stuff with a[i]

An object being used as an associative array is iterated using:

for (var key in o)
  //do stuff with o[key]

Unless you have earth shattering reasons, stick to the established pattern of usage.

link|improve this answer
18  
It should be mentioned that it is a nice practice to use for...in with filtering if statement. There is a handy method of Object "obj.hasOwnProperty(member)" which checks if a member returned by iterator is actually member of the object. See: javascript.crockford.com/code.html – Damir Zekić Oct 29 '08 at 23:09
22  
As commented at another answer(s), the "for...in" does not work correctly for Arrays, as it will iterate over all Array properties and methods. Thus, you should use "for...in" only for iterating over object properties. Otherwise, stick to "for(i=0; i<something; i++)" – Denilson Sá Apr 10 '10 at 18:03
For performance reasons, IMO it's better to evaluate the length of the array before the for, not evaluate a.length each time in the loop. – UpTheCreek Mar 22 at 13:46
4  
@UpTheCreek: That is definitely true when the array is in fact something returned by the HTMLDOM, however, I wonder how big a standard javascript array would need to be before you could see an appreciable difference? Personally I would keep the code as simple as possible until its proven necessary to do something different. – AnthonyWJones Mar 22 at 18:14
@AnthonyWJones - yeah valid point – UpTheCreek Apr 28 at 10:36
feedback

Douglas Crockford recommends in JavaScript: The Good Parts (page 24) to avoid using the for in statement.

If you use for in to loop over property names in an object, the results are not ordered. Worse: You might get unexpected results; it includes members inherited from the prototype chain and the name of methods.

Everything but the properties can be filtered out with .hasOwnProperty. Javascript: The Good Parts presents this code sample which does what you probably wanted originally:

for(var name in obj)
{
    if (obj.hasOwnProperty(name))
    {
    }
}
link|improve this answer
28  
for...in is perfectly appropriate for looping over object properties. It is not appropriate for looping over array elements. If you can't understand the difference between these scenarios, then yes, you should avoid for...in; otherwise, go nuts. – Shog9 Oct 28 '08 at 18:40
2  
Want to emphasize the fact that it is NOT ORDERED! This could be a big problem, and would be difficult bug to catch. – Jason Aug 4 '09 at 17:39
1  
In theory it's not ordered, but in all modern browsers, it is (except in some weird cases in Chrome, apparently). I believe future JavaScripts will have guaranteed ordering. – Nosredna Aug 4 '09 at 18:02
4  
+1 for "it includes members inherited from the prototype chain and the name of methods." You'll have fun if someone happens to use your code with Prototype loaded (even if your code doesn't actually use it), for instance. – ijw Aug 5 '09 at 12:11
11  
Please don't forget to declare the name variable: for(var name in object)..., otherwise, if that code is inside a function for example, the name variable end up being a property of the global object (an assignment to an undeclared identifier does that), also in the new ECMAScript 5 Strict Mode, that code will throw a ReferenceError. – CMS Oct 23 '10 at 21:08
show 4 more comments
feedback

FYI - jQuery Users


jQuery's each(callback) method uses for( ; ; ) loop by default, and will use for( in ) only if the length is undefined.

Therefore, I would say it is safe to assume the correct order when using this function.

Example:

$(['a','b','c']).each(function() {
    alert(this);
});
//Outputs "a" then "b" then "c"

The downside of using this is that if you're doing some non UI logic, your functions will be less portable to other frameworks. The each() function is probably best reserved for use with jQuery selectors and for( ; ; ) might be advisable otherwise.


link|improve this answer
There's always documentcloud.github.com/underscore which has _.each and a whole lot of other useful functions – w00t Nov 29 '11 at 11:01
feedback

there are performance differences depending on what kind of loop you use and on what browser.

For instance:

for (var i = myArray.length-1; i >= 0; i--)

is almost twice as fast on some browsers than:

for (var i = 0; i < myArray.length; i++)

However unless your arrays are HUGE or you loop them constantly all are fast enough. I seriously doubt that array looping is a bottleneck in your project (or for any other project for that matter)

link|improve this answer
2  
Would storing "myArray.length" into a variable before looping make the performance difference go away? My guess is "yes". – Tomalak Oct 28 '08 at 11:10
It would make at least most of it go away. However if I remember correctly i-- is marginally faster than i++. In any case the differences are very small. – Gene Oct 28 '08 at 11:14
3  
No. 'myArray.length' is a property, not a method on an object--no calculation is done to determine its value. Storing its value in a variable will do nothing at all. – jason Nov 1 '09 at 7:34
2  
Yes there is. Properties are not variables; they do have get/set code. – ste May 25 '10 at 13:11
9  
I tend to use for(var i = myArray.length; i--;) – Kevin Sep 15 '10 at 10:48
show 4 more comments
feedback

Note that the native Array.forEach method is now widely supported.

link|improve this answer
2  
What does it do? Does it have the problems mentioned in other posts (looping over properties instead of elements of array)? Also, as IE8 does not support it, it is bit of a stretch to say it is widely supported. – Rauni Aug 16 '11 at 8:13
1  
as much as *nix users despise it, IE8 is most of all sub-windows7 users. thats a massive portion of the browser market. – sbartell Sep 12 '11 at 18:30
1  
@Rauni -- I take your point, but for desktop devices IE browser share is less than 40%, according to en.wikipedia.org/wiki/Usage_share_of_web_browsers#Summary_table, and according to marketshare.hitslink.com/… and other sites, at least 8% of browsers are IE 9. In other words, Array.forEach is supported by around 70% of desktop browsers, so I don't think 'widely supported' is unreasonable. I haven't checked, but mobile support (on WebKit and Opera browsers) may be even higher. Obviously, there are considerable variations geographically. – Sam Dutton Sep 13 '11 at 11:44
Thanks for the update. I agree that it could be said that it is "widely supported". Only problem is that if user uses this JS method, He/She still has to write a back-up method for the case if it is not supported.. – Rauni Sep 27 '11 at 12:17
feedback

I second opinions that you should choose the iteration method according to your need. I would suggest you actually not to ever loop through native Array with for in structure. It is way slower and, as Chase Seibert pointed at the moment ago, not compatible with Prototype framework.

There is an excellent benchmark on different looping styles that you absolutely should take a look at if you work with JavaScript. Do not do early optimizations, but you should keep that stuff somewhere in the back of your head.

I would use for in to get all properties of an object, which is especially useful when debugging your scripts. For example, I like to have this line handy when I explore unfamiliar object:

l = ''; for (m in obj) { l += m + ' => ' + obj[m] + '\n' } console.log(l);

It dumps content of the whole object (together with method bodies) to my Firebug log. Very handy.

link|improve this answer
Nice benchmark in the link. – HRJ Jan 30 '10 at 8:29
Link is now broken. Sure would like to see the benchmark, if someone has another link. – Billbad Mar 28 at 17:42
feedback

The two are not the same when the array is sparse.

var array = [0, 1, 2, , , 5];

for (var k in array) {
  // Not guaranteed by the language spec to iterate in order.
  alert(k);  // Outputs 0, 1, 2, 5.
  // Behavior when loop body adds to the array is unclear.
}

for (var i = 0; i < array.length; ++i) {
  // Iterates in order.
  // i is a number, not a string.
  alert(i);  // Outputs 0, 1, 2, 3, 4, 5
  // Behavior when loop body modifies array is clearer.
}
link|improve this answer
feedback

here is something i did.

function foreach(o, f) {
 for(var i = 0; i < o.length; i++) { // simple for loop
  f(o[i], i); // execute a function and make the obj, objIndex available
 }
}

this is how you would use it
this will work on arrays and objects( such as a list of HTML elements )

foreach(o, function(obj, i) { // for each obj in o
  alert(obj); // obj
  alert(i); // obj index
  /*
    say if you were dealing with an html element may be you have a collection of divs
  */
  if(typeof obj == 'object') { 
   obj.style.marginLeft = '20px';
  }
});

I just made this so I'm open to suggestions :)

link|improve this answer
Great stuff - pretty straightforwards! – Chris Feb 15 '11 at 21:08
feedback

Updated answer for 2012 current version of all major browsers - Chrome, Firefox, IE9, Safari and Opera support ES5's native array.forEach.

Unless you have some reason to support IE8 natively (keeping in mind Chrome frame can be provided to these users, which will provide a proper JS environment), it's cleaner to simply use the language's proper syntax:

myArray.forEach(function(item) {
    console.log(item);
});

Full documentation is at MDC, who maintain Javascript: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/forEach

link|improve this answer
You should really document the callback's parameters: 1st the element value, 2nd the element index, 3rd the array being traversed – drewish Jan 26 at 4:02
@drewish I prefer to keep examples as short as possible, but I've added a link to the official MDC docs. – nailer Jan 28 at 19:48
I hear what you're saying, but in this case oversimplifying it obscures the full range of possibility. Having both the index and value means it can serve as a replacement for both for...in and for each...in—with the bonus that you don't have to remember which iterates over keys or values. – drewish Jan 29 at 1:30
feedback

I'd use the different methods based on how I wanted to reference the items.

Use foreach if you just want the current item.

Use for if you need an indexer to do relative comparisons. (I.e. how does this compare to the previous/next item?)

I have never noticed a performance difference. I'd wait until having a performance issue before worrying about it.

link|improve this answer
See Bnos answer below - for...in isn't doing what you expect here and if you use it you may well have all kinds of fun. For the record, Prototype does things the right way. – marcus.greasly Oct 28 '08 at 16:22
feedback

For in loops on Arrays is not compatible with Prototype. If you think you might need to use that library in the future, it would make sense to stick to for loops.

http://www.prototypejs.org/api/array

link|improve this answer
Forget "you might need to use that library". Think instead "your JS might be included with anything else that uses that library", because the problems still come. – ijw Aug 5 '09 at 12:14
feedback

With for (var i in myArray) you can loop over objects too, i will contain the key name and you can access the property via myArray[i]. Additionaly, any methods you will have added to the object will be included in the loop, too, i.e., if you use any external framework like jQuery or prototype, or if you add methods to object prototypes directly, at one point i will point to those methods.

link|improve this answer
feedback

If you really want to speed up your code, what about that?

for( var i=0,j=null; j=array[i++]; foo(j) );

it's kinda of having the while logic within the for statement and it's less redundant. Also firefox has Array.forEach and Array.filter

link|improve this answer
2  
Why would this speed up your code? I can't see why reording statements like this would speed it up. – Rup Dec 5 '11 at 11:04
feedback

I have seen problems with the "for each" using objects and prototype and arrays

my understanding is that the for each is for properties of objects and NOT arrays

link|improve this answer
feedback

Using forEach to skip the prototype chain

Just a quick addendum to @nailer's answer above, using forEach with Object.keys means you can avoid iterating over the prototype chain without having to use hasOwnProperty.

var Base = function () {
    this.coming = "hey";
};

var Sub = function () {
    this.leaving = "bye";
};

Sub.prototype = new Base();
var tst = new Sub();

for (var i in tst) {
    console.log(tst.hasOwnProperty(i) + i + tst[i]);
}

Object.keys(tst).forEach(function (val) {
    console.log(val + tst[val]);
});
link|improve this answer
feedback

Use the Array().forEach loop to take advantage of parallelism

link|improve this answer
feedback

Watch out!

If you have several script tags and your're searching an information in tag attributes for example, you have to use .length property with a for loop because it isn't a simple array but an HTMLCollection object.

https://developer.mozilla.org/en/DOM/HTMLCollection

If you use the foreach statement for(var i in yourList) it will return proterties and methods of the HTMLCollection in most browsers!

var scriptTags = document.getElementsByTagName("script");

for(var i = 0; i < scriptTags.length; i++)
alert(i); // Will print all your elements index (you can get src attribute value using scriptTags[i].attributes[0].value)

for(var i in scriptTags)
alert(i); // Will print "length", "item" and "namedItem" in addition to your elements!

Even if getElementsByTagName should return a NodeList, most browser are returning an HTMLCollection: https://developer.mozilla.org/en/DOM/document.getElementsByTagName

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.