Test name | Executions per second |
---|---|
array find | 406889.0 Ops/sec |
new Set has | 181519.1 Ops/sec |
const arr = [];
for (let i = 0; i < 10000; i++) {
const n = 10 * Math.random();
arr.push(Math.floor(n));
}
const set = new Set(arr);
const arr2 = [];
for (let i = 1; i <= 100; i++) arr2.push(i);
const testArr = arr2.filter(el => arr.find(e => e === 5));
const testSet = arr2.filter(el => set.has(5));