Fastest array loops in Javascript (v513)

Revision 513 of this benchmark created on


Preparation HTML

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

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

Test runner

Ready to run.

Testing in
TestOps/sec
For loop, basic
var result = [];

for (var i = 0; i < arr.length; i++) {
  result.push(someFn(arr[i]));
}
ready
While 3
var l = arr.length;
while(l--) {
  someFn(arr[l]);
}
ready
Map
arr.map(someFn);
ready
forEach
arr.forEach(someFn);
ready

Revisions

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