Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
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; rv:129.0) Gecko/20100101 Firefox/129.0
Browser:
Firefox 129
Operating system:
Linux
Device Platform:
Desktop
Date tested:
2 years ago
Benchmark engine:
Benchmark.js
native
38/s
lodash
37/s
View exact numbers
Test name
Executions per second
✓
native
38 Ops/sec
lodash
37 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);