Array reduce vs forEach (v38)

Revision 38 of this benchmark created by sadsa on


Preparation HTML

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

Setup

var array = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];

Teardown


    console.log(total);
  

Test runner

Ready to run.

Testing in
TestOps/sec
forEach
var total = 0;
array.forEach(function(val) {
  total += val;
});
ready
reduce
var total = array.reduce(function(prev, curr) {
  return prev + curr;
});
ready
ss
var total = 0;
$.each(array, function(i, val) {
  total += val;
});
ready

Revisions

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