Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Chrome 131
Mac OS X 10.15.7
Desktop
3 months ago
Test name Executions per second
lodash filter 3352925.8 Ops/sec
lodash compact 5527962.0 Ops/sec
Native filter 7281668.0 Ops/sec
HTML Preparation code:
AخA
 
1
<script src="https://cdn.jsdelivr.net/lodash/4.16.0/lodash.min.js"></script>
Script Preparation code:
 
var ops = [null, 1, 2, 3, 4, 5, null, null, null, 3, 4,5, 6, 34,341,2,2,2,1,212,21212,34,1,3112, null];
Tests:
  • lodash filter

     
    _.filter(ops, op => !!op)
  • lodash compact

     
    _.compact(ops)
  • Native filter

     
    ops.filter(op => !!op)