Lesson 5: Loops (for, while, do...while)

Loops allow you to execute a block of code repeatedly until a condition is met.

Types of Loops

for (let i = 0; i < 5; i++) {
  console.log(i);
}