Computer Science, asked by rikiborachamp12291, 7 months ago

Write a algorithm to printing a string "god save me" ten times

Answers

Answered by sg249344
0

let a = 0;

while (a<10){

console.log("god save me");

a++;

}

Similar questions