Script Preparation code:
AخA
 
var a = (new Array(10000)).fill(0).map((x, i) => i)
Tests:
  • For loop

     
    for (let i = 0; i < a.length; i++) {
      console.log(a[i])
    }
  • forEach

     
    a.forEach(console.log)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    For loop
    forEach

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36
Chrome 67 on Mac OS X 10.13.6
View result in a separate tab
Test name Executions per second
For loop 4.2 Ops/sec
forEach 4.9 Ops/sec