Script Preparation code:
AخA
 
var arr = Array.from(new Array(10000)).map((_, index) => index);
var result = [];
Tests:
  • For + Push

     
    for (let i = 0; i < arr.length; i++) {
      result.push(arr[i])
    }
  • Map

     
    result = arr.map((a) => a)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    For + Push
    Map

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36
Chrome 92 on Mac OS X 10.14.6
View result in a separate tab
Test name Executions per second
For + Push 201.0 Ops/sec
Map 4949.0 Ops/sec