Script Preparation code:
x
 
var arr = [];
var i = 0;
while (i <= 1E5) arr[i] = i++;
Tests:
  • Array.filter

     
    const item = arr.filter(item => item !== 1E5);
  • Array.splice + Array.indexOf

     
    const index = arr.splice(arr.indexOf(1E5), 1);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.filter
    Array.splice + Array.indexOf

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:135.0) Gecko/20100101 Firefox/135.0
Firefox 135 on Windows
View result in a separate tab
Test name Executions per second
Array.filter 1575.6 Ops/sec
Array.splice + Array.indexOf 48390.9 Ops/sec