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