CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
JavaScript Quiz #6

Do While Repetition

easyLoops

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);