setup
var list = []; for (var i = 0; i < 100; i++) { list.push(i); }
test
var sum = 0; list.forEach(function(i) { sum += i; }
Run
Benchmarker
X
M