Tests:
  • Set.has (1,000 items)

    x
     
    const myArray = [];
    for (let i = 0; i < 1000; i++) {
      myArray.push(i);
    }
    const mySet = new Set(myArray);
    const contains = mySet.has(999);
  • Array.includes (1,000 items)

     
    const myArray = [];
    for (let i = 0; i < 1000; i++) {
      myArray.push(i);
    }
    const mySet = new Set(myArray);
    const contains = myArray.includes(i) ? true : false;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Set.has (1,000 items)
    Array.includes (1,000 items)

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 Edg/91.0.864.59
Chrome 91 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Set.has (1,000 items) 24836.6 Ops/sec
Array.includes (1,000 items) 24764.0 Ops/sec