Fastest array loops in Javascript (v44)

Revision 44 of this benchmark created by Jon-Carlos Rivera 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 loop, basic
var i = 0;
while (i < arr.length) {
  someFn(arr[i]);
  i++;
}
ready
For loop, cached
for (var i = 0, len = arr.length; i < len; i++) {
  someFn(arr[i]);
}
ready
For loop, basic
for (var i = 0; i < arr.length; i++) {
  someFn(arr[i]);
}
ready

Revisions

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