Reduce vs. loop (v5)

Revision 5 of this benchmark created on


Setup

var arr = [];
  for (var i=0; i<50; i++) arr.push(Math.floor(Math.random() * 10000));

Test runner

Ready to run.

Testing in
TestOps/sec
loop(cache length)
var sum = 0;
for (var i = 0, l = arr.length; i < l; i++) {
  sum += arr[i];
}
ready
loop
var sum = 0;
function add(a, b) { return a + b; }
for (var i = 0; i < arr.length; i++) {
  sum = add(sum, arr[i]);
}
ready
Reduce
total = arr.reduce(function(curr_total, val) {
    return curr_total + val;
}, 0);
ready

Revisions

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