For Loops
For loops repeat code a specific number of times. They're perfect when you know how many iterations you need.
Basic For Loop
Loading JavaScript Playground...
Loop Parts Explained
Loading JavaScript Playground...
Different Step Values
Loading JavaScript Playground...
Looping Through Arrays
Loading JavaScript Playground...
Nested Loops
Loading JavaScript Playground...
Exercise: Sum Numbers
Calculate the sum of numbers from 1 to 10:
Loading JavaScript Exercise...
Exercise: Multiplication Table
Print the 5 times table (5x1 through 5x5):
Loading JavaScript Exercise...

