CJCoding With Joseph
15per day

For Loop: Print 1 to 5

Use a for loop to print the numbers 1 through 5, one number per line.

Expected output:
1
2
3
4
5

Steps:
1. Write a for loop that starts at 1
2. Continue the loop while the number is less than or equal to 5
3. Use console.log() inside the loop

Expected Output:

1
2
3
4
5
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.