Run details:
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
Mac OS X 10.15.7
Desktop
2 years ago
Test name Executions per second
findIndex 747.1 Ops/sec
indexOf 635815.9 Ops/sec
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);