Searching for something

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
With Array
const companies = ['hub', 'sales', 'payouts', 'manage'];

const hasSnap = companies.includes('reports')
ready
With Set
const companies = new Set(['hub', 'sales', 'payouts', 'manage']);

const hasSnap = companies.has('reports')
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.