Script Preparation code:
AخA
 
var array = Array.from({length: 100});
var t;
Tests:
  • for

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

     
    array.forEach(function(v, i) {
      t = v;
    });
  • for..of

     
    for (const v of array) {
      t = v;
    }
  • for..of over entries

     
    for (const [i, v] of array.entries()) {
      t = v;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for
    foreach
    for..of
    for..of over entries

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Chrome 120 on Windows
View result in a separate tab
Test name Executions per second
for 72006.3 Ops/sec
foreach 171216.4 Ops/sec
for..of 171911.9 Ops/sec
for..of over entries 159427.1 Ops/sec