Signup/Sign In

Answers

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

Here is the correct answer:
***
*/*
JS Hello World
*/*
console.log("Hello World!");
// console.log("Some debugging information");
***
6 months ago
Please share the level number and lesson number
6 months ago
Here is the correct answer:
***



<br /> My Webpage Title<br />










***
6 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);
***
6 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.
6 months ago
Please share the level and the lesson number.
6 months ago
Try this CSS
***
button {
padding: 5px;
background-color: #FFB643;
border: 0;
border-radius: 5px;
cursor:pointer;
}
***
6 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





***
6 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);
***
6 months ago
Please share the level number and lesson number so that I can help you.
6 months 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);
***
6 months 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.
6 months ago