Computer Science, asked by dineshbonthala049, 14 days ago

Write one for loop to print out each character of the string my_str on a separate line

Answers

Answered by AaryaBalan
0

Answer:

var my_str = "Loren ispum";

for(i = 0; i >= my_str.length; i++){

console.log(my_str[i]);

}

Similar questions