Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Printing Numbers from 5 to 9 | Loops
Introduction to JavaScript
course content

Contenido del Curso

Introduction to JavaScript

Introduction to JavaScript

1. Basic Concepts
2. Variables and Data Types
3. Basic Operations
4. Conditional Statements
5. Loops
6. Functions

bookChallenge: Printing Numbers from 5 to 9

Task

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

123456
let a = 5; ___ (a ___ ___) { console.log(___); ___++; };
copy

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.
123456
let a = 5; while (a <= 9) { console.log(a); a++; }
copy

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 5. Capítulo 3
some-alt