scrimba
Learn Basic JavaScript
Iterate with JavaScript Do...While Loops
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Iterate with JavaScript Do...While Loops
AboutCommentsNotes
Iterate with JavaScript Do...While Loops
Expand for more info
index.js
run
preview
console
// Setup
var myArray = [];
var i = 10;

// Only change code below this line.

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

console.log(i, myArray);
Console
5040
,
index.html
-1:23