Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

Have you solved this lesson or you still need help?
3 years ago
You are pretty close to the correct solution. Try this:
***
let x = 0;

while(x < 10){
console.log(x);
if(x === 5){
break;
}
x++;
}
***
3 years ago
Use the following code in the