converter string para definir em js
const strToArr = (str) => str.split("");
const strToSet = (str) => [...new Set(strToArr(str))];
Ricky Adriell Cultura
const strToArr = (str) => str.split("");
const strToSet = (str) => [...new Set(strToArr(str))];