Script Preparation code:
x
 
var array = [];
array.forEach(i => array.push(i));
var someFunction = num => num * 2 * 3;
Tests:
  • .map

     
    const arr1 = array.map(i => someFunction(i));
  • .forEach

     
    const arr2 = [];
    array.forEach(i => { arr2.push(someFunction(i)); });
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    .map
    .forEach

    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/75.0.3770.100 Safari/537.36
Chrome 75 on Windows
View result in a separate tab
Test name Executions per second
.map 2684568.8 Ops/sec
.forEach 8375906.5 Ops/sec