Signup/Sign In

Answers

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

let x = 0;

while(x < 10)
{
if(x==5)
{
x++;
continue;
}
console.log(x);
x++;
}
Try this code once.
one year ago
Your code's output does not match the expected outcome for this exercise.
After matching the proper output it is displaying this.
2 years ago