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

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

     
    array.forEach(function(i) {
      array[i];
    });
  • some

     
    array.some(function(i) {
      array[i];
    });
  • for..of

     
    for (var i of array) {
      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: 4 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36
Chrome 89 on Mac OS X 10.15.4
View result in a separate tab
Test name Executions per second
for 65111.7 Ops/sec
foreach 2024463.2 Ops/sec
some 2481106.0 Ops/sec
for..of 71250.9 Ops/sec