for vs forEach (v219)

Revision 219 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 += 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 += 1) {
  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

Revisions

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