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:
***



Changing font-size using Media query



Studytonight




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



<br /> My Webpage Title<br />










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





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