Array.from()
const set = new Set([1, 2, 3]); // Set(3) { 1, 2, 3 }
const arr = Array.from(set) // [ 1, 2, 3 ]
Spread Operator (전개 연산자)
const set = new Set([1, 2, 3]); // Set(3) { 1, 2, 3 }
const arr = [...set] // [ 1, 2, 3 ]
forEach()
const set = new Set([1, 2, 3]); // Set(3) { 1, 2, 3 }
const arr = []
set.forEach(ele => {
arr.push(ele)
})
console.log(arr); // [ 1, 2, 3 ]