Script Preparation code:
AخA
 
var arr = Array(1000);
Tests:
  • forloop

     
    for (let i = 0; i < 1000; i++) {
      arr[i];
    }
  • forEach

     
    arr.forEach(it => {
      it;
    });
  • for...of

     
    for (let it of arr) {
      it;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    forloop
    forEach
    for...of

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36
Chrome 101 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
forloop 14728.8 Ops/sec
forEach 481663.1 Ops/sec
for...of 1380820.2 Ops/sec