Signup/Sign In

Answers

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

Hey, the code that you are trying, is correct, may be some issue with the application showed you 'Try again!' message.

The application is working fine now, please try now.
3 years ago
Please share the Level and Lesson number.
3 years ago
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