Signup/Sign In

Answers

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

Can you please help me with JS level 8 lesson 3
function doYoga()
{
console.log("some yoga");
console.log("some more yoga");
console.log("now relax...");
}
doYoga();
doYoga();

I have tried everything but nothing is working I believe you are passed through this level, and it will be really great if you could help me as I have been stuck on it for a week now! Thanks.
2 years ago
It isn't working. I have been doing it the same way and it says that the output doesn't match the expected output
2 years ago
Hi, I haven't reached that level yet as I am literally stuck at Level 8 Lesson 3. Please! Can you help get out there? It's about the doYoga() function twice and I don't know where I am wrong. It's been almost a week, and I cannot think outside of the box.
2 years ago
let x = 5;
x+=12;
console.log(x);
let a = 200;
a/=50;
console.log(a);
let p = 12;
p%=5;
console.log(p);

This was my code which is exactly the same as yours, I believe there must be some system errors. Try again, hopefully, it will work!
2 years ago