Script Preparation code:
AخA
 
var array = Array.from({length: 10000});
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: one month ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0
Firefox 134 on Windows
View result in a separate tab
Test name Executions per second
for 78753.2 Ops/sec
foreach 17307.2 Ops/sec
for..of 15883.3 Ops/sec
for..of over entries 8067.6 Ops/sec