Signup/Sign In

Answers

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

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);
***
2 years ago
Try this one:
***







***
2 years ago
Try this one:
***
let i = 0;
const str = "studytonight";

while(i {
console.log(str[i] + "");
i++;

}
***
2 years ago
Try this one:
***



CSS Grid Template




1

2

3

4

5

6

7

8

9




***
2 years ago
Try this one : Tab one
***



JS with HTML





***
Tab two
***
document.write("Hello World");
***
2 years ago
Try this one
***
let player = {
name: "default_name",
weapon: "Pistol",
exp: "Pro",

// defining method
setName: function(name) {
this.name=name;
},
getName: function() {
return this.name;
},
showInfo: function() {
console.log(`${this.name} uses ${this.weapon} and is ${this.exp} level player in STBattleRoyal`);
}
};

player.setName("John Wick");
player.showInfo();
***
2 years ago
Try this one : Level 3 and lesson 7 HTML -COURSE
***



My Webpage Title


Do you know?




Human thigh bones are stronger than concrete.


Earth is the only planet not named after a god.




***
2 years ago
Try this one
***



CSS transition-duration






***
2 years ago
Try this one
***
let x = true;
let y = false;

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

// apply OR operator
console.log(!x||y);

***
2 years ago
Please check level and lesson id again so that we can
help
2 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");
}
***
2 years ago
Try this one tab1 :
***







***

tab 2:
***
let mobiles = ["Apple", "Samsung", "One Plus", "Moto", "Huwaei"];

// using forEach function
mobiles.forEach(printMobs);


// define the callback function
function printMobs(item,index) {
console.log(`Rank ${index}: ${item} Mobiles`);
}
***
2 years ago