Script Preparation code:
x
 
// Populate the base array
var arr = [];
for (var i = 0; i < 1000; i++) {
  arr[i] = i;
}
function fn(a) {
  return a * 2 * 5;
}
      
Tests:
  • native

     
    arr.forEach(fn);
  • for loop

     
    for(i = 0; i < arr.length; i++) {
      fn(arr[i]);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    native
    for loop

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2025 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.168 Safari/537.36 OPR/51.0.2830.40
Opera 51 on Windows
View result in a separate tab
Test name Executions per second
native 63942.9 Ops/sec
for loop 1228.8 Ops/sec