Test name | Executions per second |
---|---|
Set spread | 959418.4 Ops/sec |
Array from set | 855333.6 Ops/sec |
Filter | 212614.4 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((i,index) => array.indexOf(i)=== index)