Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
Chrome 85
Mac OS X 10.15.6
Desktop
4 years ago
Test name Executions per second
Array.prototype.find 579.9 Ops/sec
Array.prototype.findIndex 570.2 Ops/sec
Script Preparation code:
x
 
var arr = [];
var i = 0;
while (i <= 1E5) arr[i] = i++;
Tests:
  • Array.prototype.find

     
    const item = arr.find(item => item == 1E5);
  • Array.prototype.findIndex

     
    const index = arr.findIndex(item => item == 1E5);