“Iterar con JavaScript mientras bucle” Código de respuesta

Iterar con JavaScript mientras bucle

var ourArray = [];
var i = 0;
while(i < 5) {
  ourArray.push(i);
  i++;
} // 0 to 4 [ 0, 1, 2, 3, 4 ]

var myArray = [];
var i = 5;
while (i  >= 0) {
  myArray.push(i);
  i--;
} // 5 to 0 (reverse) [ 5, 4, 3, 2, 1, 0 ]
Owlthegentleman

Iterar con do mientras loops JavaScript

var myArray = [];

var i = 10;

 do {  // The do while loop will always run atleast once before checking the condtion. This will return false and break out of the loop.
	myArray.push(i);
    i++;
} while (i < 5)

console.log(i, myArray);
Tony Harris

Iterar con javascript do ... mientras bucle

var ourArray = []; 
var i = 5;
do {
  ourArray.push(i);
  i++;
} while (i < 5); // it will work once and stop looping.
Owlthegentleman

Respuestas similares a “Iterar con JavaScript mientras bucle”

Preguntas similares a “Iterar con JavaScript mientras bucle”

Más respuestas relacionadas con “Iterar con JavaScript mientras bucle” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código