×
×
Correct!
Create a loop that runs as long as
let i = 0;
@(5) (i @(1) 10) {
console.log(i);
i++
}
let i = 0;
while (i < 10) {
console.log(i);
i++
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 67 exercises.
Are you sure you want to continue?