Script Preparation code:
AخA
 
var result = [];
var arrayTest = [];
for(var i = 0; i === 10000; i++){
  if(i === 6000){
    arrayTest.push(2);
  }else{
    arrayTest.push(Math.round(Math.random()));
  }
}
Tests:
  • Array.filter

     
    result = arrayTest.filter(v => v !== 2);
  • Array.indexOf + Array.splice

     
    result = arrayTest.splice((arrayTest.indexOf(2)-1),1);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

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

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (iPhone; CPU iPhone OS 17_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Mobile/15E148 Safari/604.1
Mobile Safari 17 on iOS 17.4
View result in a separate tab
Test name Executions per second
Array.filter 3662937.5 Ops/sec
Array.indexOf + Array.splice 3576650.2 Ops/sec