Fastest array loops in Javascript (v368)

Revision 368 of this benchmark created on


Preparation HTML

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

  function someFn (ix) {
      return ix + 1 / 2;
  }
</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
While loop, cached
var i = 0;
var len = arr.length;
while(i < len) {
    someFn(i);
    i++;
}
ready
For loop, i--
for (var i = arr.length - 1; i > -1; i--) {
    someFn(i);
}
ready
While loop, i--
var i = arr.length - 1;
while(i > -1) {
    someFn(i);
    i--;
}
ready

Revisions

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