Menu
×
×
Correct!
Exercise: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!Next ❯ |
This will reset the score of ALL 67 exercises.
Are you sure you want to continue?