Script Preparation code:
x
 
var arr = new Array(15000);
for (var i = 0; i < 15000; i++) {
    arr.fill({ id: i });
}
numArr = arr.map((el, idx) => el.id = idx);
var foo = Math.floor(Math.random() * 15000);
Tests:
  • findIndex

     
    var index = arr.findIndex((obj) => obj.num === foo);
  • indexOf

     
    var index = numArr.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: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36
Chrome 112 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
findIndex 747.1 Ops/sec
indexOf 635815.9 Ops/sec