Fastest array loops in Javascript (v78)

Revision 78 of this benchmark created on


Setup

// Populate the base array
    var arr = [];
    for (var i = 0; i < 1000; i++) {
      arr[i] = Math.random() + 1;
    }
  var len= arr.length;
    function someFn(ix) {
      return ix * 5 + 1 / 3 * 8;
    }

Test runner

Ready to run.

Testing in
TestOps/sec
While length--
var l = arr.length;
while(l--) {
  someFn(arr[l]);
}
ready
While length-=1
var l = arr.length;
while(l-=1) {
  someFn(arr[l]);
}
ready
While loop, basic, i++
var i = 0;
while (i < arr.length) {
  someFn(arr[i]);
  i++;
}
ready
While loop, basic, i+=1
var i = 0;
while (i < arr.length) {
  someFn(arr[i]);
  i+=1;
}
ready
For loop, cached, i++
for (var i = 0, len = arr.length; i < len; i++) {
  someFn(arr[i]);
}
ready
For loop, cached, i+=1
for (var i = 0, len = arr.length; i < len; i+=1) {
  someFn(arr[i]);
}
ready
For loop, basic, i++
for (var i = 0; i < arr.length; i++) {
  someFn(arr[i]);
}
ready
For loop, cached, ++i
for (var i = 0, len = arr.length; i < len; ++i) {
  someFn(arr[i]);
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.