Conteúdo do Curso
Introduction to JavaScript
Introduction to JavaScript
Challenge: Printing Numbers from 5 to 9
Task
Let's implement a while loop that outputs numbers from 5 to 9 to the console.
let a = 5; ___ (a ___ ___) { console.log(___); ___++; };
The output should be:
- Set the condition to a
<= 9
ora < 10
. - Include the variable
a
within theconsole.log()
function. - Increment the value of
a
inside the loop.
let a = 5; while (a <= 9) { console.log(a); a++; }
Obrigado pelo seu feedback!