course content

Course Content

Introduction to JavaScript

Challenge: Print Numbers from 5 to 9Challenge: Print Numbers from 5 to 9

Task

Let's implement a while loop that outputs numbers from 5 to 9 to the console.

The output should be:

1. Set the condition to a <= 9 or a < 10.
2. Include the variable a within the console.log() function.
3. Increment the value of a inside the loop.

let a = 5;

while (a <= 9) {
  console.log(a);
  a++;
}
      

Everything was clear?

Section 5. Chapter 3