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 (var v of array) {
      t = v;
    }
  • for..of over entries

     
    for (var [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: 14 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0
Chrome 133 on Windows
View result in a separate tab
Test name Executions per second
for 38261.8 Ops/sec
foreach 39613.3 Ops/sec
for..of 40196.6 Ops/sec
for..of over entries 37606.1 Ops/sec