Test name | Executions per second |
---|---|
Set spread | 957113.9 Ops/sec |
Array from set | 555341.2 Ops/sec |
Filter | 3155825.0 Ops/sec |
var array = Array.from({length: 10}, () => Math.floor(Math.random() * 140));
const f = [ new Set(array)]
const s = new Set(array)
const l = Array.from(s)
const b = array.filter((i,index) => array.indexOf(i)=== index)