Signup/Sign In

Answers

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

Here is the correct solution:
***
let myvehicle = "car";
let weather = "rainy";

if(weather=="rainy")
{
if(myvehicle == "car")
{
console.log("I go to the office");
}
else if(myvehicle == "bike")
{
console.log("I Work from home");
}

}
else if(weather!="rainy")
{
console.log("I go to the office");
}
***
4 months ago
Here is the correct answer:
***
.speedy {
background-color:#4535AA;
animation-name: ghumo;
animation-duration: 4s;
animation-iteration-count: 5;
animation-timing-function:ease-in;
}

.slowy {
background-color:#FFB643;
animation-name: ghumo;
animation-duration: 4s;
animation-iteration-count: 5;
animation-timing-function:linear;
}

@keyframes ghumo {
0% { transform: rotate(0); }
100% { transform: rotate(360deg); }
}
***
4 months ago
Using the


***
4 months ago
Here is the correct answer:
***
let x = 10;
let y = 50;
let z = "10";

var xy = x >= y;
console.log(xy);

console.log(x === z);
***
5 months ago
Here is the correct answer:
***



Changing font-size using Media query



Studytonight




***
5 months ago
Here is the correct answer:
***



Changing font-size using Media query



Studytonight




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



<br /> My Webpage Title<br />










***
5 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);
***
5 months ago