Fast Array Foreach (v215)

Revision 215 of this benchmark created on


Setup

// Populate the base array
    var arr = [];
    for (var i = 0; i < 1000; i++) {
      arr[i] = i;
    }
  
    function someFn1(_index) {
      return _index * 3 * 8;
    }
    function someFn2(_element, _index, _array) {
      return _index * 3 * 8;
    }

Test runner

Ready to run.

Testing in
TestOps/sec
Array.ForEach
arr.forEach(someFn2)
ready
while
var len = arr.length;
while (--len) {
console.log(len)
    someFn1(arr[len]);
}
ready

Revisions

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