Script Preparation code:
x
 
var arr = [];
var i = 0;
while (i <= 1E5) arr[i] = i++;
Tests:
  • while

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

     
    const index = arr.indexOf(1E5);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    while
    Array.indexOf

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Chrome 108 on Linux
View result in a separate tab
Test name Executions per second
while 5877.9 Ops/sec
Array.indexOf 25652262.0 Ops/sec