Fast Array Foreach (v52)

Revision 52 of this benchmark created on


Setup

// Populate the base array
      var arr = [];
      for (var i = 0; i < 1000; i++) {
        arr[i] = i;
      }
    
      function someFn(i) {
        return i * 3 * 8;
      }

Test runner

Ready to run.

Testing in
TestOps/sec
Array.ForEach
arr.forEach(function (item){
  someFn(item);
})
ready
For normal
for (var i = 0; i < arr.length; i++) {
  someFn(arr[i]);
}
ready
For cached
for (var i = 0, len = arr.length; i < len; i++) {
  someFn(arr[i]);
}
ready
while
var i = arr.length;
while (i--) {
  someFn(arr[i]);
}
ready
while 2
var i = 0;
while (i < arr.length) {
  someFn(arr[i]);
  i+=1;
}
ready

Revisions

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