Script Preparation code:
AخA
 
  var object = {},
      array = [],
      set = new Set(),
      i, test = 1000;
  
  for (i = 0; i < 1000; i++) {
   object['something' + i] = true;
   array.push('something' + i);
   set.add('something' + i);
  }
Tests:
  • Object.hasOwnProperty

     
    object.hasOwnProperty('something' + test)
  • Object in

     
    ('something' + test) in object
  • Array.indexOf

     
    array.indexOf('something' + test) !== -1
  • direct

     
    object['something' + test]
  • Array includes

     
    array.includes('something' + test)
  • Set has

     
    set.has('something' + test)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Object.hasOwnProperty
    Object in
    Array.indexOf
    direct
    Array includes
    Set has

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0
Firefox 101 on Windows
View result in a separate tab
Test name Executions per second
Object.hasOwnProperty 1383059456.0 Ops/sec
Object in 1385706240.0 Ops/sec
Array.indexOf 784039.2 Ops/sec
direct 1570718848.0 Ops/sec
Array includes 1265376.1 Ops/sec
Set has 1381633792.0 Ops/sec