Home / Javascript Tips Generated By ChatGPT / Iterating Over Strings with for…of in Javascript Loop through each character in a string. Source Code for (let char of "Hello") { console.log(char); }