Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I learn from other book that you should write the for loop like this:

for(var i=0, len=arr.length; i < len; i++){
    // blah blah
}

so the arr.length will not be calculated each time.

Others say that the compiler will do some optimization to this, so you just need to write:

for(var i=0; i < arr.length; i++){
    // blah blah
}

I just want to know which is the best way in practice?

share|improve this question
possible duplicate of Loop through array in JavaScript – Joachim Sauer Mar 18 '11 at 8:06
jsperf.com/loops – Mathias Bynens Sep 17 '11 at 13:22
also worth a look when dealing with array looping: jsperf.com/array-loop-var-caching – Dan J Jun 29 '12 at 9:12

9 Answers

up vote 30 down vote accepted

After performing this test with most modern browsers...

http://jsperf.com/caching-array-length/4

Currently, the fastest form of loop (and in my opinion the most syntactically obvious).

a standard for loop with length caching

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

}
share|improve this answer
2  
Interestingly, in IE9 this is faster: for (var i = 0, len = myArray.length; i < len; ++i) {} // prefix incr, instead of postfix – Christopher Bennage Oct 31 '11 at 17:38
@ChristopherBennage thanks for the addition. – jondavidjohn Nov 7 '11 at 15:56
1  
See Prefer prefix operators over postfix for other reasons to use ++i. – Bennett McElwee Nov 21 '11 at 8:28
1  
I tested using prefix operator as @BennettMcElwee suggested and it runs a little faster: for(var i=0, len=myArray.length; i<len; ++i) Check jsperf.com/caching-array-length/84 – victmo Mar 22 '12 at 4:33
2  
You have to be careful using this loop. I started using it and had a hard to track bug because of one mistake I made. If you nest two loops like this: jsfiddle.net/KQwmL/1. You have to be careful to name the var len differently in the two loops, otherwise the second loop will overwrite the first len. – Rui Marques Nov 30 '12 at 13:08

The absolute fastest way to loop through a javascript array is:

var len = arr.length;
while (len--) {
    // blah blah
}

See http://blogs.oracle.com/greimer/entry/best_way_to_code_a for a full comparison

share|improve this answer
The link is useful – wong2 Mar 18 '11 at 8:21
1  
Don’t forget to use var (else len becomes a global variable). Also, see jsperf.com/loops for more loop benchmarks. – Mathias Bynens Mar 18 '11 at 11:20
@mathias Agreed, edited! – gnur Mar 18 '11 at 11:50
1  
Remember that this structure works only for positive values of len and that it loops in reverse order. – Levi Morrison May 4 '11 at 22:04
4  
The blog post this answer is based on is now almost 4 years old, and a lot has changed in js engines in that time, see my answer below for an updated comparison. – jondavidjohn Aug 31 '11 at 3:01
show 2 more comments

http://jsperf.com/caching-array-length/60

The latest revision of test, which I prepared (by reusing older one), shows one thing.

Caching length is not that much important, but it does not harm.

Every first run of the test linked above (on freshly opened tab) gives best results for the last 4 snippets (3rd, 5th, 7th and 10th in charts) in Chrome, Opera and Firefox in my Debian Squeeze 64-bit (my desktop hardware). Subsequent runs give quite different result.

Performance-wise conclusions are simple:

  • Go with for loop (forward) and test using !== instead of <.
  • If you don't have to reuse the array later, then while loop on decremented length and destructive shift()-ing array is also efficient.

tl;dr

Nowadays (2011.10) below pattern looks to be the fastest one.

for (var i = 0, len = arr.length; i !== len; i++) {
    ...
}

Mind that caching arr.length is not crucial here, so you can just test for i !== arr.length and performance won't drop, but you'll get shorter code.


PS: I know that in snippet with shift() its result could be used instead of accessing 0th element, but I somehow overlooked that after reusing previous revision (which had wrong while loops), and later I didn't want to lose already obtained results.

share|improve this answer

If the order is not important, I prefer this style:

for(var i = array.length; i--; )

It caches the length and is much shorter to write. But it will iterate over the array in reverse order.

share|improve this answer
It looks better than the one with a while loop. Thanks! – knsmr Mar 19 at 2:47

I'm always write in the first style.

Even if a compiler is smart enough to optimize it for arrays, but still it smart if we are using DOMNodeList here or some complicated object with calculated length?

I know what the question is about arrays, but i think it is a good practice to write all your loops in one style.

share|improve this answer

It is better to cache the length of the array. Not all javascript engines will have the optimization you described.

share|improve this answer

http://jsperf.com/caching-array-length/50

This page says while is the fastest.

share|improve this answer
Nope, it wasn't for me. In several test the caching one was the fastest one. – ZenMaster Sep 8 '11 at 19:20
@jondavidjohn - Those while loops were broken. fixed: jsperf.com/caching-array-length/51 – izar Sep 17 '11 at 13:25

Your first choice is the fastest, because the compiler doesn't have to access an object property for each loop. It is safer to declare the variable outside of the loop. Many you can find the actual performance timing on youtube, check google tech talk where they bechmark different loops.

share|improve this answer

The most elegant solution I know of is using map.

var arr = [1,2,3];
arr.map(function(input){console.log(input);});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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