Script Preparation code:
AخA
 
var arr = [];
for(let i = 0; i < 15000; i++) {arr[i] = i;}
var foo = Math.floor(Math.random() * 15000);
Tests:
  • findIndex

     
    const index = arr.findIndex((element) => element === foo);
  • indexOf

     
    const index = arr.indexOf(foo);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    findIndex
    indexOf

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
Chrome 87 on Windows
View result in a separate tab
Test name Executions per second
findIndex 1758.6 Ops/sec
indexOf 218150.4 Ops/sec