Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Chrome 131
Linux
Desktop
one month ago
Test name Executions per second
Array includes 110556576.0 Ops/sec
Set has 144808336.0 Ops/sec
Map has 140204864.0 Ops/sec
Script Preparation code:
AخA
 
var a = [1];
var b = new Set([1]);
var c = new Map([[1, 1]]);
Tests:
  • Array includes

     
    return a.includes(1);
  • Set has

     
    return b.has(1);
  • Map has

     
    return c.has(1);