Test name | Executions per second |
---|---|
lodash times | 12935.2 Ops/sec |
Array.from | 6776.6 Ops/sec |
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var nTimes = 1000
var func = (i) => i * Math.random()
_.times(nTimes,func)
Array.from({length: nTimes},(_,i) => func(i))