Script Preparation code:
AخA
 
var array = [];
var obj = {};
[new Array(10000)].forEach(function(num){
  array.push(num);
  obj[num] = num;
});
Tests:
  • check with array

     
    if (array.includes(9999)) {
      console.log('test 1');
    }
  • check with obj

     
    if (obj[9999]) {
      console.log('test 2');
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    check with array
    check with obj

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36
Chrome 96 on Linux
View result in a separate tab
Test name Executions per second
check with array 6825173.5 Ops/sec
check with obj 7478580.0 Ops/sec