const text = "abc";
const chars = text.split('');
console.log(chars);
//['a', 'b', 'c']