Script Preparation code:
x
 
var arr = [];
var i = 0;
while (i <= 1E5) arr[i] = i++;
Tests:
  • Get item by index with Array.indexOf

     
    const index = arr.indexOf(1E5)
    const item = arr[index]
  • Get item by index with Array.findIndex

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

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Get item by index with Array.indexOf
    Get item by index with Array.findIndex

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0
Firefox 119 on Windows
View result in a separate tab
Test name Executions per second
Get item by index with Array.indexOf 12761.4 Ops/sec
Get item by index with Array.findIndex 3595.4 Ops/sec