Reduce vs. loop2 (v3)

Revision 3 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
Reduce
total = arr.reduce(function(curr_total, val) {
    return curr_total + val;
}, 0);
alert(total);
ready
loop(cache length)
var sum = 0;
for (var i = 0, l = arr.length; i < l; i++) {
  sum += arr[i];
}
alert(sum);
ready
loop
Array.prototype.myreduce = function(callback, init) {
    var total = init;
    for (var i=0, l=this.length; i<l; ++i)
       total = callback(total,this[i]);
    return total;
}

total = arr.myreduce(function(curr_total, val) {
    return curr_total + val;
}, 0);
alert(total);
ready

Revisions

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