Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36
Chrome 95
Mac OS X 10.15.7
Desktop
3 years ago
Test name Executions per second
Array.prototype.includes 37681.7 Ops/sec
Set.prototype.has 13727802.0 Ops/sec
Script Preparation code:
x
 
var arr = [];
var i = 0;
while (i <= 1E5) arr.push(++i);
var set = new Set(arr);
Tests:
  • Array.prototype.includes

     
    const isExits = arr.includes(1E5)
  • Set.prototype.has

     
    const isExits = set.has(1E5)