Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 OPR/102.0.0.0
Opera 102
Windows
Desktop
one year ago
Test name Executions per second
array.includes 15720540.0 Ops/sec
set.has 15684142.0 Ops/sec
Script Preparation code:
AخA
 
var a = [];
for(let i = 0; i < 1000000; i++) {
  a.push(i);
}
var b = new Set(a)
Tests:
  • array.includes

     
    return a.includes(9)
  • set.has

     
    return b.has(9)