← Back to Question List
JavaScript Quiz #6
Do While Repetition
How many times will "Practice makes progress" be printed by the following code?
📄 Code
1let i = 0;2do {3 console.log("Practice makes progress");4 i++;5} while (i < 3);