Script Preparation code:
AخA
 
arr = Array(10000).fill().map(x=>Math.random())
Tests:
  • .map

     
    arr.map(x=>{});
  • .forEach

     
    arr.forEach(x=>{});
  • for loop

     
    for(let i = 0;i<arr.length;i++){let x=arr[i]}
  • for of loop

     
    for(let x of arr){}
  • for of keys

     
    for(let i of arr.keys()){let x = arr[i]}
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    .map
    .forEach
    for loop
    for of loop
    for of keys

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36
Chrome 79 on Windows
View result in a separate tab
Test name Executions per second
.map 1228.9 Ops/sec
.forEach 1508.7 Ops/sec
for loop 89.7 Ops/sec
for of loop 10460.1 Ops/sec
for of keys 175.5 Ops/sec