vote up 10 vote down star
4

Hi guys. How do you think, is there a big difference in foreach 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 big difference. May there are any perfomance issues?

flag

4  
There is no need to iterate while "i <= myArray.length - 1", use "i < myArray.length" instead. – Tomalak Oct 28 '08 at 11:07

11 Answers

vote up 21 vote down check

The choice is best made based on the which idiom is best understood.

An array is expected to be iterated using:-

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

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

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

I would recommend that despite there being alternatives unless you have earth shattering reasons otherwise you should stick with the established pattern of usage.

link|flag
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 Oct 29 '08 at 23:09
vote up 13 vote down

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(name in object)
{
    if (object.hasOwnProperty(name))
    {
    }
}
link|flag
Second that - foreach... isn't doing what you might expect (esp if coming from .net) and it's probably not what you're trying to do. – marcus.greasly Oct 28 '08 at 16:20
3  
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
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 at 17:39
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 at 18:02
+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 at 12:11
vote up 7 vote down

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|flag
1  
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
But we are still talking JavaScript here, not assembler, aren't we? :-) – Tomalak Oct 28 '08 at 12:19
I'm not sure anymore :D I know I was but don't know about you – Gene Oct 28 '08 at 14:49
1  
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 at 7:34
show 1 more comment
vote up 4 vote down

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|flag
vote up 2 vote down

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|flag
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
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
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 at 12:14
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

i think foreach doesnt work in IE6

link|flag

Your Answer

Get an OpenID
or

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