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 #4

For Loop 1 to 5

easyLoops

What numbers does the following loop print?

📄 Code

1for (let i = 1; i <= 5; i++) {
2 console.log(i);
3}