Fastest array loops in Javascript (v319)

Revision 319 of this benchmark created on


Preparation HTML

<script>
  // Populate the base array
  var arr = [];
  for( var i = 0; i < 1000; i++ ) {
    arr[i] = 'value' + i;
  }

  function someFn (ix) {
      return ix * 5 + 1 / 3 * 8;
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
For loop, basic
for (var i = 0; i < arr.length; i++) {
  someFn(i);
}
ready
While loop, basic
var i = 0;
while (i < arr.length) {
  someFn(i);
  i++;
}
ready
For loop, cached
for (var i = 0, len = arr.length; i < len; i++) {
  someFn(i);
}
ready
For loop, i--
for (var i = arr.length; i > 0; i--) {
  someFn(i);
}
ready
Do-while loop, i--
var i = arr.length - 1;
do {
  someFn(i);
}
while (i--);
ready
Do-while loop, --i
var i = arr.length;
if (i > 0) {
  do {
    someFn(i);
  }
  while (--i);
}
ready
For loop, --i
for (var 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.