for vs forEach (v220)

Revision 220 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 += calc(val);
  }

  function calc(val) {
   return Math.sqrt(val) + Math.sqrt(val/7);
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
for+
var i = 0,
  max;

for (i = 0, max = values.length; i < max; i++) {
  add(values[i]);
}
ready
for-
// preferred 1
var i;
for (i = values.length; i--;) {
  add(values[i]);
}
ready
while
// preferred 2
var i = values.length;
while (i--) {
  add(values[i]);
}
ready
forEach
values.forEach(function(val, i) {
  add(val)
});
ready
reduce
sum = values.reduce(function(prev, curr) {
  return calc(curr)
}, calc(values[0]));
ready
every
values.every(function(val, i) {
  add(val);
  return true;
});
ready

Revisions

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