Write one for loop to print out each character of the string my_str on a separate line
Answers
Answered by
0
Answer:
var my_str = "Loren ispum";
for(i = 0; i >= my_str.length; i++){
console.log(my_str[i]);
}
Similar questions