Run details:
Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0
Firefox 57
Windows 7
Other
2025 years ago
Test name Executions per second
lodash.map 73453.8 Ops/sec
native 67453.2 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);