Iterating over a string

const str = "hello";

for (const s of str) {
  console.log(s, typeof s);
}
  
h string
e string
l string
l string
o string