Answers for "Iterate with Do While Loops Javascript"

1

iterate with javascript while loops

var myArray = []



var i = 0;
while(i < 5){
    myArray.push(i)
    i++
}


console.log(myArray);
Posted by: Guest on June-29-2021
0

Iterate with Do While 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);
Posted by: Guest on January-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language