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

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

     
    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 with operation
    some
    for..of

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Chrome 120 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
for 271571.4 Ops/sec
foreach with operation 3985942.5 Ops/sec
some 4029022.8 Ops/sec
for..of 231853.7 Ops/sec