Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
lodash remove vs native splice
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
Browser:
Chrome 122
Operating system:
Linux
Device Platform:
Desktop
Date tested:
2 years ago
Test name
Executions per second
lodash
3.2 Ops/sec
native
8.3 Ops/sec
HTML Preparation code:
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"></script>
Script Preparation code:
var max = 10000000; // 10,000,000 (10 Million) var arr = []; for (var i = 0; i <= max; i++) { arr.push(i); }
Tests:
lodash
_.remove(arr, item => item === 890047);
native
const index = arr.findIndex(item => item === 890047); arr.splice(index, 1);