Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36
Chrome 95
Mac OS X 10.15.7
Desktop
3 years ago
Test name Executions per second
lodash times 12935.2 Ops/sec
Array.from 6776.6 Ops/sec
HTML Preparation code:
x
 
1
2
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
Script Preparation code:
 
var nTimes = 1000
var func = (i) => i * Math.random()
Tests:
  • lodash times

     
    _.times(nTimes,func)
  • Array.from

     
    Array.from({length: nTimes},(_,i) => func(i))