Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

JS Level 8 Lesson 3

After the function definition, I am supposed to call the function twice. I don't know where I am wrong. Someone, please guide me.
function doYoga()
{
console.log("some yoga");
console.log("some more yoga");
console.log("now relax...");
}
doYoga();
doYoga();

Ain't I supposed to CALL IT TWICE?
by

1 Answer

Login / Signup to Answer the Question.