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:
x
 
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 notInArr1 = _.difference(arr2, arr1)
    const notInArr2 = _.difference(arr1, arr2)
  • Set & Filter

     
    const notInArr1 = arr2.filter(value => !arr1.some(v => v === value));
    const notInArr2 = arr1.filter(value => !arr2.some(v => v === 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: 7 days ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0
Chrome 134 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Lodash 7723.7 Ops/sec
Set & Filter 13989.5 Ops/sec