Signup/Sign In

Answers

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

if you are in level 4 and lesson 4:
Try this one if you are in the above-mentioned level and lesson:
***
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");
}
***
one year ago
Hii, please mention level id and lesson id
one year ago
Try this one: step 2 as html project Calculator Layout Design

***



Calculator







***
one year ago
Ques:  Step 2
Try this one:
***
let x = 10;
let y = 50;
let z = "10";
let xy = x >= y;
console.log(xy);
console.log(x === z);
***
one year ago
Try this one:
***



CSS transition-duration






***
one year ago
Try this one:
***
let x = true;
let y = false;

// apply AND operator
console.log(x && !y);

// apply OR operator
console.log(!x || y);
***
one year ago
Try this one:
***



CSS transform property



Transform me!



***
one year ago
Try this one:
***



Registration Form


My Registration Form





































***
one year ago
Try this one:
***
let mobile = {
name: "Apple iPhone 12",
price: 1200,

// defining method
purchase:function(quantity) {
console.log(`Please pay ${(this.price)*quantity} for ${quantity} ${this.name} Mobile phones.`);
}
};

// call the method with argument = 2
mobile.purchase(2);
***
one year ago
Try this one:
***



CSS Grid Item Placement




1

2

3

4

5

6

7

8

9




***
one year ago
Try this one:
***



CSS Grid Item Placement




1

2

3

4

5

6

7

8

9




***
one year 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);
***
one year ago