Konversi String ke Set di JS

const strToArr = (str) => str.split("");
const strToSet = (str) => [...new Set(strToArr(str))];
Ricky Adriell Cultura