Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36
Chrome 98
Linux
Desktop
3 years ago
Test name Executions per second
findIndex 852412.8 Ops/sec
indexOf 4145593.8 Ops/sec
map indexOf 3584184.0 Ops/sec
Script Preparation code:
AخA
 
var arr = new Array(10);
arr.fill({ id: 0 });
arr = arr.map((el, idx) => el.id = idx);
var foo = Math.floor(Math.random() * 15000);
Tests:
  • findIndex

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

     
    var index = arr.indexOf(foo);
  • map indexOf

     
     var index = arr.map((e) => e.id).indexOf(foo);