// There are multiple ways but I find this easiest. let str = 'This is my string'; for(let character of str) console.log(character) Run code snippet