Signup/Sign In

Answers

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

Try this one
***



CSS Box Sizing



Studytonight

Welcome to Studytonight.




***
3 years ago
Try this one
***
let x = 10;
let y = 50;
let z = "10";

let xy= x>=y;
console.log(xy);
console.log(x===z);
***
3 years ago
Try this one
***
let x = 0;

while(x < 10){
console.log(x);
if(x === 5){
break;
}
x++;
}
***
3 years ago
Try this one
***
let signal = "yellow";
// write logic here
if(signal == "green") {
console.log("Go");
}
else if(signal == "yellow") {
console.log("Wait");
}
else if(signal == "red") {
console.log("Stop");
}
else {
console.log("Error");
}
***
3 years ago
Try this one
***
let x = 10;
let y = 1;
let z;
// your code comes here
(x > y)? z=x: z=y;
console.log("Value of z:" + z);
***
3 years ago
Try this one
***
var myVar;
console.log(myVar);

var myVar=null;
console.log(myVar);
***
3 years ago
Try this one
***
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);
***
3 years ago
Try this one
***



My Webpage Title



  1. Apple

  2. Bag

  3. Cat





***
3 years ago
Try this one
***



My Webpage Title


Do you know?


The human brain takes in 11 million bits of information every second but is aware of only 40.




***
3 years ago
Try this one
***



CSS transform property



Transform me!



***
3 years ago
Try this one
***



CSS Grid Template Areas




1

2

3

4

5

6

7

8

9




***
3 years ago
We have fixed the errors, Please try again.
Thank you.
3 years ago