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?

link|improve this question

70% accept rate
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
feedback

8 Answers

up vote 14 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++) {

}
link|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
See Prefer prefix operators over postfix for other reasons to use ++i. – Bennett McElwee Nov 21 '11 at 8:28
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 at 4:33
feedback

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

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

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

link|improve this answer
The link is useful – wong2 Mar 18 '11 at 8:21
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
1  
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 1 more comment
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

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

This page says while is the fastest.

link|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
feedback

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.

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.