for vs forEach (v79)

Revision 79 of this benchmark created on


Description

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

Inspired by Adrian Sutton's tests at: http://www.symphonious.net/2010/10/09/javascript-performance-for-vs-foreach/

This one adds random floating point numbers to see if the loop overhead is significant at all in the face of standard work.

Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>

Setup

var i,
      value,
      length,
      values = [],
      sum = 0,
      context = values;
    
    
    for (i = 0; i < 10000; i++) {
      values[i] = Math.random();
    }
    
    function add(val) {
      sum += val;
    }

Teardown


    i = 0;
    value = 0;
    length = 0;
    values = [];
    sum = 0;
  

Test runner

Ready to run.

Testing in
TestOps/sec
forEach closure
values.forEach(function(val) {
  sum += val;
});
ready
$.each
$.each(values, function(key, value) {
  sum += value;
});
ready
for ... in
for (i in values) {
  sum += values[i];
}
ready
forEach
values.forEach(add);
ready

Revisions

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