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 arr = Array.from(Array(100000).keys())
Tests:
  • filter

     
    _.filter(arr, o => o !== 99999);
  • without

     
    _.without(arr, 99999);
  • array.filter

     
    arr.filter(o => o !== 99999);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    filter
    without
    array.filter

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0
Firefox 119 on Ubuntu
View result in a separate tab
Test name Executions per second
filter 1153.4 Ops/sec
without 1219.1 Ops/sec
array.filter 1148.5 Ops/sec