어우 몰랐네... 괜히 삽질...
JSON.stringify 를 사용하려면 Set을 배열로 변환해야 한단다.
let mySet = new Set([1, 2, 3]);
let myArray = Array.from(mySet);
let jsonString = JSON.stringify(myArray);
console.log(jsonString); // 출력: "[1,2,3]"
어우 몰랐네... 괜히 삽질...
JSON.stringify 를 사용하려면 Set을 배열로 변환해야 한단다.
let mySet = new Set([1, 2, 3]);
let myArray = Array.from(mySet);
let jsonString = JSON.stringify(myArray);
console.log(jsonString); // 출력: "[1,2,3]"