for vs forEach (v222)

Revision 222 of this benchmark created on


Description

Is it faster to use the native forEach or just loop with for?

Preparation HTML

<script>
  var i, values = [],
      sum = 0;
  for (i = 0; i < 10000; i++) {
   values[i] = i;
  }
  
  function add(val) {
   sum += val;
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
forEach
values.forEach(add);
ready
fastForEach
Array.prototype.forEach = function forEach(fn, thisContext) {
  var iterator = thisContext !== undefined ? fn.bind(thisContext) : fn,
    length = iterator ? this.length : 0,
    i;
  for (i = 0; i < length; i++) {
    iterator(this[i], i, this);
  }
};
ready

Revisions

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