Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36
Chrome 91
Linux
Desktop
3 years ago
Test name Executions per second
lodash 10.0 Ops/sec
native 9.0 Ops/sec
HTML Preparation code:
AخA
 
1
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
Script Preparation code:
 
var data = Array(1000000).fill({ a: 'a', b: 1 });
Tests:
  • lodash

     
    _.map(data, ({a, b}) => `${a}_${b}`)
  • native

     
    data.map(({a, b}) => `${a}_${b}`)