Signup/Sign In

Answers

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

Please share the level and lesson number...
2 months ago
Can you please share the code?
2 months ago
Please share level and lesson number...
4 months ago
In which lesson/level you are?
Are you using the application on Mobile browser?
4 months ago
This is the correct answer:
***
{
let myVar = 10;
console.log(myVar);
}
***
4 months 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 months 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();
}
}
***
5 months ago
Please share the question properly.
6 months ago
Try this:
***


Javascript with HTML



Some Page Heading





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



CSS transform property



I am rotated

I am skewed

Translate me!

Scale me!



***
6 months ago
Try this:
***
console.log(true)
***
6 months ago
You can generate it yourself from your Profile section.
7 months ago