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().indexof()

     
    const item = arr[arr.indexOf(1E5)];
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype().find()
    Array.prototype().indexof()

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36
Chrome 94 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Array.prototype().find() 930.7 Ops/sec
Array.prototype().indexof() 4935.3 Ops/sec