Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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);
 
PREVIOUS NEXT
Tagged: #Iterate #Do #While #Loops #Javascript
ADD COMMENT
Topic
Name
5+5 =