Script Preparation code:
AخA
 
var array = new Array(100);
var fn = val => val;
Tests:
  • for

     
    for (var i = 0; i < array.length; i++) {
      fn(array[i]);
    }
  • foreach

     
    array.forEach(i => fn(i));
  • some

     
    array.some(i => fn(i));
  • for..of

     
    for (var i of array) {
      fn(array[i]);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for
    foreach
    some
    for..of

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15
Safari 15 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
for 98598.7 Ops/sec
foreach 423650.0 Ops/sec
some 8583535.0 Ops/sec
for..of 103853.1 Ops/sec