Signup/Sign In

Answers

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

Same. Stuck at this lesson.
** let x = "I love \'Chocolate'\\'Butterscotch\' ice cream."; **
This is my code. Shows 'Missed to escape some special character'
Can someone help
3 years ago
For level 5 > lesson 6, Try this
let x = 0;

**while(x < 10)
{
if(x ==5)
{
x++;
continue;
}
console.log(x);
x++;
}**
Hope this helps !!
3 years ago