Signup/Sign In

Answers

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

function doYoga() // declaration of function
{
console.log("Breathe deep");
console.log("fold your legs");
console.log("Meditate");
console.log("typeof doYoga");
}

doYoga(); // calling the function

Now will be show output you can try it :)
2 years ago