Test name | Executions per second |
---|---|
Set.difference | 0.0 Ops/sec |
Array.filter | 957967.7 Ops/sec |
Array.filter with Set.has | 2532799.8 Ops/sec |
var array1 = Array.from({length: 40}, () => Math.floor(Math.random() * 140));
var array2 = Array.from({length: 20}, () => Math.floor(Math.random() * 140));
var setFromArray1 = new Set(array1)
var setFromArray2 = new Set(array2)
const setDiff = setFromArray1.difference(setFromArray2)
const arrayFilter = array1.filter(value => array2.indexOf(value))
const arrayFilterWithSetHas = array1.filter(value => setFromArray2.has(value))