Fastest array loops in Javascript (v532)

Revision 532 of this benchmark created by eight on


Preparation HTML

<script>
  function someFn(ix) {
    try { 
        ix += 1; 
        if (ix < 0) {
           throw new Error('e');
        }
    } catch (e){
        alert(e);
    }
    return ix * 5 + 1 / 3 * 8;
  }
  
var testArr = [];
for (i = 0; i < 1000; i++) {
	testArr[i] = i+1;
}

</script>

Setup

// Populate the base array
  var arr = testArr.slice();

Test runner

Ready to run.

Testing in
TestOps/sec
For loop, basic
var i;
for (i = 0; i < arr.length; i++) {
  someFn(arr[i]);
}
ready
While loop, basic
var i = 0;
while (i != arr.length) {
  someFn(arr[i++]);
}
ready
For loop, cached
var i, len;
for (i = 0, len = arr.length; i < len; i++) {
  someFn(arr[i]);
}
ready
For loop, i--
var i;
for (i = arr.length; i > 0; i--) {
  someFn(arr[i]);
}
ready
Do-while loop, i--
var i = arr.length - 1;
if (i >= 0) {
	do {
	  someFn(arr[i]);
	} while (i--);
}
ready
Do-while loop, --i
var i = arr.length;
if (i > 0) {
  do {
    someFn(arr[i - 1]);
  } while (--i);
}
ready
For..in loop
var i;
for (i in arr) {
  someFn(arr[i]);
}
ready
forEach
arr.forEach(function (v){
  someFn(v);
});
ready
While ! Undefined
var i = 0, v;
while((v = arr[i++]) !== undefined) {
  someFn(v);
}
ready
While length--
var i = arr.length;
while(i--) {
  someFn(arr[i]);
}
ready
For of
var v;
for (v of arr) {
	someFn(v);
}
ready

Revisions

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