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 arr1 = [];
for(let i = 0; i < 100; i++) {
  arr1.push('' + i);
}
var arr2 = [];
for(let i = 49; i >= 0; i--) {
  arr2.push('' + i);
}
Tests:
  • Lodash

     
    const notInArr = _.difference(arr2, arr1)
  • Set & Filter

     
    const arr2Set = new Set();
    arr2.forEach(value => arr2Set.add(value));
    const notInArr2 = arr1.filter(value => !arr2Set.has(value));
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Lodash
    Set & Filter

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36
Chrome 113 on Linux
View result in a separate tab
Test name Executions per second
Lodash 42817.4 Ops/sec
Set & Filter 342209.5 Ops/sec