Fastest array loops in Javascript (v395)

Revision 395 of this benchmark created by Patrick Denny 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, ++i < len
for (var i = 0, len = arr.length; ++i < len;) {
  someFn(i);
}
ready
For loop, i--
for (var i = arr.length; i--; ) {
  someFn(i);
}
ready
while loop, i--
var i = arr.length;
while (i--) {
  someFn(i);
}
ready
while loop, ++i < len
var i = -1,
  len = arr.length;
while (++i < len) {
  someFn(i);
}
ready

Revisions

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