Script Preparation code:
x
 
var arr = ['apple', 'banana', 'cherry', 'donuts', 'eggplant', 'french fries', 'goulash', 'hamburger', 'ice cream', 'juice', 'kebab', 'lemonade', 'mango', 'nuts', 'octopus', 'parsley', 'quail egg', 'risotto', 'stew', 'tapas', 'udon', 'vanilla', 'wheat', 'xylotil', 'yogurt', 'zucchinni'];
function forLoop(array, item) {
    for (var i = 0; i < array.length; i++) {
        if (array[i] === item) {
          return i;
        }
    }
    return -1;
}
function whileLoop(array, item) {
    var i = 0;
    while (i < array.length) {
        if (array[i] === item) {
            return i;
        }
        i += 1;
    }
    return -1;
}
function indexOfNative(array, item) {
    return array.indexOf(item);
}
function includesNative(array, item) {
    return array.includes(item);
}
Tests:
  • For Loop for item towards beginning

     
    forLoop(arr, 'donuts')
  • While Loop for item towards beginning

     
    whileLoop(arr, 'donuts')
  • indexOf for item towards beginning

     
    indexOfNative(arr, 'donuts')
  • For Loop for item towards end

     
    forLoop(arr, 'yogurt')
  • While Loop for item towards end

     
    whileLoop(arr, 'yogurt')
  • indexOf for item towards end

     
    indexOfNative(arr, 'yogurt')
  • includes for item towards start

     
    includesNative(arr, 'donuts')
  • includes for item towards end

     
    includesNative(arr, 'yogurt')
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    For Loop for item towards beginning
    While Loop for item towards beginning
    indexOf for item towards beginning
    For Loop for item towards end
    While Loop for item towards end
    indexOf for item towards end
    includes for item towards start
    includes for item towards end

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 21 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0
Chrome 135 on Windows
View result in a separate tab
Test name Executions per second
For Loop for item towards beginning 103348544.0 Ops/sec
While Loop for item towards beginning 113800144.0 Ops/sec
indexOf for item towards beginning 83591016.0 Ops/sec
For Loop for item towards end 47705156.0 Ops/sec
While Loop for item towards end 45000556.0 Ops/sec
indexOf for item towards end 36180668.0 Ops/sec
includes for item towards start 82337216.0 Ops/sec
includes for item towards end 37468276.0 Ops/sec