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 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/126.0.6478.153 Mobile/15E148 Safari/604.1
Browser:
Chrome Mobile iOS 126
Operating system:
iOS 18.0
Device Platform:
Mobile
Date tested:
one year ago
JS Filter and includes
4.1M/s
Lodash difference
3.5M/s
View exact numbers
Test name
Executions per second
✓
JS Filter and includes
4,070,913 Ops/sec
Lodash difference
3,548,495 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));