JavaScript для ... с струнами

// string
const string = 'code';

// using for...of loop
for (let i of string) {
    console.log(i);
}
SAMER SAEID