📘Set
🚧 under construction
// array -> set
const s = new Set([1, 2, 3, 4])
// set -> array
[...s] // [1, 2, 3, 4] Last updated
🚧 under construction
// array -> set
const s = new Set([1, 2, 3, 4])
// set -> array
[...s] // [1, 2, 3, 4] Last updated