Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
Chrome 85
Mac OS X 10.15.7
Desktop
4 years ago
Test name Executions per second
findIndex 818.0 Ops/sec
indexOf 83601.0 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);