Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Lodash difference vs JS filter and includes
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36
Browser:
Chrome 122
Operating system:
Windows
Device Platform:
Desktop
Date tested:
2 years ago
JS Filter and includes
2.0M/s
Lodash difference
1.8M/s
View exact numbers
Test name
Executions per second
✓
JS Filter and includes
1,954,454 Ops/sec
Lodash difference
1,838,744 Ops/sec
Script Preparation code:
var array1 = ['1', '2', '3', '4'] var array2 = ['2', '4']
Tests:
Lodash difference
filteredArray = _.difference(array1, array2);
JS Filter and includes
filteredArray = array1.filter((arr) => !array2.includes(arr));