Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Test remove from array 2
(version: 0)
Test remove from array
Comparing performance of:
1 vs 2
Created:
4 years ago
by:
Guest
Jump to the latest result
Script Preparation code:
const length = 10000; const testArray = Array.from({ length }, (_, i) => i) window.testArray = testArray window.randomIndex = Math.round(0 + Math.random() * ((length - 1) - 0))
Tests:
1
window.testArray = window.testArray.filter(elem => elem !== window.randomIndex);
2
const index = window.testArray.findIndex(elem => elem === window.randomIndex) window.testArray.splice(index, 1)
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (2)
Previous results
Fork
Test case name
Result
1
2
Fastest:
N/A
Slowest:
N/A
Latest run results:
No previous run results
This benchmark does not have any results yet. Be the first one
to run it!
Related benchmarks:
Test remove from array
Splice vs new Array
Splice vs new Array Fix
Test Lodash Filter vs Remove
Comments
Confirm delete:
Do you really want to delete benchmark?