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

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

     
    array.forEach((v) => {
      t = v;
    });
  • for..of

     
    for (const v of array) {
      t = v;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for
    foreach
    for..of

    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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36
Chrome 132 on Windows
View result in a separate tab
Test name Executions per second
for 1839.6 Ops/sec
foreach 1885.0 Ops/sec
for..of 1881.7 Ops/sec