// (ES6 / ES2015)+ way of doing it const str = "Hello World!"; const chars = [...str]; // Pre-ES2015 way of doing it var chars2 = str.split("");