HTML Preparation code:
AخA
 
1
<script src='https://cdn.jsdelivr.net/g/lodash@4(lodash.min.js+lodash.fp.min.js)'></script>
Script Preparation code:
x
 
function double(n) {
    return n*2;
}
var data = [...Array(20)].map((v, idx) => idx);
Tests:
  • lodash fp map

     
    _.map(double, data);
  • lodash fp map composed

     
    _.map(double)(data);
  • es6 map

     
    data.map(double)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    lodash fp map
    lodash fp map composed
    es6 map

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1
Mobile Safari 16 on iOS 16.4.1
View result in a separate tab
Test name Executions per second
lodash fp map 3918942.0 Ops/sec
lodash fp map composed 842626.6 Ops/sec
es6 map 5830921.5 Ops/sec