Script Preparation code:
x
 
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>

Previous results

Experimental features:

  • Test case name Result
    1
    2

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36
Chrome 92 on Windows
View result in a separate tab
Test name Executions per second
1 498.2 Ops/sec
2 603.3 Ops/sec