let set = new Set([1, 2, 3]) console.log(set, typeof set);
let arr = Array.from(set)
let arr = [...set]
let arr = [1, 2, 3, 4, 5, 3, 2, 5, 6, 7, 8] arr = Array.from(new Set(arr)) console.log(arr);