Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:58.0) Gecko/20100101 Firefox/58.0
Firefox 58
Mac OS X 10.12
Other
2025 years ago
Test name Executions per second
lodash.map 80992.7 Ops/sec
native 120570.6 Ops/sec
HTML Preparation code:
AخA
 
1
<script src="https://cdn.jsdelivr.net/lodash/4.17.4/lodash.min.js"></script>
Script Preparation code:
 
var value = [];
for(var i = 0; i < 1000; i++){
  value[i] = i;
}
Tests:
  • lodash.map

     
    _.map(value, (x) => x*x);
  • native

     
    value.map((x) => x*x);