Strings can be converted into arrays with the spread operator:
const chars = [..."abc"]; console.log(chars); // Array(3) [ "a", "b", "c" ]