Fastest array loops in Javascript (v326)

Revision 326 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
For loop, JSLint
var i;
for (i = 0; i < arr.length; i += 1) {
    someFn(i);
}
ready
For loop, JSLint and cached
var i,
    len = arr.length;
for (i = 0; i < len; i += 1) {
    someFn(i);
}
ready

ready

Revisions

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