Signup/Sign In

Answers

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

Please share level and lesson number...
4 weeks ago
In which lesson/level you are?
Are you using the application on Mobile browser?
4 weeks ago
This is the correct answer:
***
{
let myVar = 10;
console.log(myVar);
}
***
4 weeks ago
Hey, try this:
***
let cookie = document.cookie;
if(cookie.search("Hello=World")>=0)
{
console.log("Cookie found");
}
else {
document.cookie = "Hello=World";
}
// fetch cookie to print value
cookie = document.cookie;
document.write(cookie);
***
4 weeks ago
Try this:
***
function teaBreak(){
console.log("Start making tea");
console.log("Tea ready");
console.log("Enjoy the tea");
}

let teaHour;

for(teaHour=1; teaHour<=12; teaHour++)
{
if(teaHour%4 == 0)
{
teaBreak();
}
}
***
3 months ago
Please share the question properly.
3 months ago
Try this:
***


Javascript with HTML



Some Page Heading





***
You have to add doSomething() function in the onclick attribute.
3 months ago
Try this:
***



CSS transform property



I am rotated

I am skewed

Translate me!

Scale me!



***
3 months ago
Try this:
***
console.log(true)
***
3 months ago
You can generate it yourself from your Profile section.
4 months ago
Here is the answer:
***



My Login Form

Login Form










***
4 months ago
Ideally your answer should be correct, can you share the error that you get?
4 months ago