for vs forEach (v110)

Revision 110 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 < 100000; i++) {
    values[i] = i;
  }

  function add(val) {
    sum += val;
  }

  function myForEach(arr, cb) {
    for (var i = 0, len = arr.length; i < len; ++i) {
      cb(arr[i])
    }
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
forEach
values.forEach(add);
ready
for loop, simple
for (i = 0; i < values.length; i++) {
  add(values[i]);
}
ready
for loop, cached length
var len = values.length;
for (i = 0; i < len; i++) {
  add(values[i]);
}
ready
for loop, reverse
for (i = values.length - 1; i >= 0; i--) {
  add(values[i]);
}
ready
forEach more local
(function() {
  var sum = 0;
  values.forEach(function(val) {
    sum += val;
  });
})();
ready
myForEach local function
var localAdd = function(val) {
  sum += val;
};
myForEach(values, localAdd);
ready
cached, in for
for (var i = 0, len = values.length; i < len; i++) {
  add(values[i]);
}
ready
cached, in for, pre-inc
for (var i = 0, len = values.length; i < len; ++i) {
  add(values[i]);
}
ready
myForEach
myForEach(values, add);
ready
myForEach closure
myForEach(values, function(val) {
  sum += val;
});
ready
tight loop w/o fct call
for (var i = 0, len = values.length; i < len; ++i) {
  sum += values[i];
}
ready

Revisions

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