Signup/Sign In

Answers

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

Please share the level number and lesson number
12 months ago
Here is the correct answer:
***



<br /> My Webpage Title<br />










***
12 months ago
Here is the correct answer:
***
let str1 = "Welcome to";
let str2 = " Our JavaScript Course!";

// write your code here
let str3 = str1 + str2;
console.log(str3.length);
***
12 months ago
Click on Run. In the first few HTML course lessons, you will not see anything in the output because you will be creating the webpage structure. So do not worry.
12 months ago
Please share the level and the lesson number.
12 months ago
Try this CSS
***
button {
padding: 5px;
background-color: #FFB643;
border: 0;
border-radius: 5px;
cursor:pointer;
}
***
12 months ago
Try this code:

***



Neela Prasad




https://www.studytonight.com/css/resource.v3/svg/new/search-vision.svg"/>


GOOGLE


Google make it simple!




About Me


ABCDEFGHIJKALMNOPQRSTUVWXYZZYXWVUTSRQPONMLAKJIHGFEDCBA





***
12 months ago
Here is the correct answer:
***
let x = 10;
let y = 1;
let z;
// your code comes here
(x > y)? z = x : z = y;
console.log("Value of z:" + z);
***
12 months ago
Please share the level number and lesson number so that I can help you.
one year ago
Here is the correct answer:
***
var bestApp = 'studytonight';
let _code = 'I love coding';
let num = 007;
let $123 = 100;
console.log(bestApp);
console.log(_code);
console.log(num);
console.log($123);
***
one year ago
Here is the correct answer:
***
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();
}
}
***

Your answer looks correct, just try to remove the last console.log statement from the function body.
one year ago
Hey can you share more details on our WhatsApp - Our number is +919354261828

Please share a screenshot or screen recording so that we can help you with the error.
one year ago