icon picker
2. while Loop

Use the while statement to create a loop that executes code as long as a condition evaluates to true.

Estructura de un while

Captura de Pantalla 2022-05-23 a la(s) 02.07.13.png
Mientras la condición ( ) sea verdadera, se ejecutará el scope { } en un loop.

Ejemplo

En el archivo while.js
function getRandomNumber(upper) {
return Math.floor( Math.random() * upper ) + 1;
}
Si quisiéramos ejecutar esa función 10 veces deberíamos hacer algo como:
getRandomNumber(200);
getRandomNumber(200);
getRandomNumber(200);
getRandomNumber(200);
getRandomNumber(200);
getRandomNumber(200);
getRandomNumber(200);
getRandomNumber(200);
getRandomNumber(200);
getRandomNumber(200);
Lo anterior podemos reescribirlo como un loop
function getRandomNumber(upper) {
return Math.floor( Math.random() * upper ) + 1;
}

let counter = 0; // Creamos un contador que inicia en 0

while ( counter < 10 ) {
console.log(`El número aleatorio es: ${getRandomNumber(200)}`)
counter += 1; // sumamos 1 al contador
}
Captura de Pantalla 2022-05-23 a la(s) 02.38.33.png

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.