Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36
Chrome 118
Windows
Desktop
one year ago
Test name Executions per second
includes 17615174.0 Ops/sec
lookup 17973104.0 Ops/sec
indexof 15966845.0 Ops/sec
Script Preparation code:
AخA
 
var a = [
  9,
  2,
  5,
  6,
];
var b = new Set(a)
Tests:
  • includes

     
    return a.includes(5)
  • lookup

     
    return b.has(5)
  • indexof

     
    return a.indexOf(5) >= 0