CJCoding With Joseph
← Back to Question List
JavaScript Code Walkthrough #38

Counting Down in a Loop

easyLoops

📄 Code

Read carefully — what does this print?
1for (let i = 3; i > 0; i--) {
2 console.log(i);
3}
4console.log("Go");

🎯 Your Answer