Script Preparation code:
AخA
 
var array = ['banana', 'sausage', 'jesus']
Tests:
  • indexOf

     
    array.indexOf('sausage') !== 1
  • includes

     
    array.includes('sausage')
  • lodash

     
    _.includes(array, 'sausage')
  • for

     
    const inArray = (target = 'sausage', array) => {
      for(var i = 0; i < array.length; i++) {
        if(array[i] === target) {
          return true;
        }
      }
      return false; 
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    indexOf
    includes
    lodash
    for

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.114 Safari/537.36
Chrome 94 on Windows
View result in a separate tab
Test name Executions per second
indexOf 10817521.0 Ops/sec
includes 11842122.0 Ops/sec
lodash 3254000.5 Ops/sec
for 964807488.0 Ops/sec