Signup/Sign In

Answers

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

Try this one
***



<br /> My Webpage Title<br />








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




Revise what we know!










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



Calculator

















***
3 years ago
Try this one
***
let course = {
name: "JS Course",
duration : "15 hours",
price: 499,
discount: "100%"
};

for(x in course)
{
console.log(`${x} is ${course[x]}`);
}
***
3 years ago
Try this one
***


Website







***
3 years ago
Try this one
***
function division(x,y)
{
let result;
if(y !== 0) {
result = x/y;
console.log("Result: "+ result);
}
else {
console.log("Cannot divide a number by zero");
}
}
// calling the function
division(10,5);
***
3 years ago
Try this one
***
let txt1 = 'Yokozuna';
let txt2 = 'Yokohama';

if(txt1.length==txt2.length){
console.log("Both are same");
}
***
3 years ago
Try this one
***// Add function here
function doYoga(){
console.log('A');
console.log('B');
console.log('C');
}



console.log(typeof doYoga);***
3 years ago
Try this one
***


Website






Sidebar

Main




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



<br /> My Webpage Title<br />












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



CSS Grid Item Placement




1

2

3

4

5

6

7

8

9




***
3 years ago
Try this one
***
let subjects = ["HTML", "CSS", "JavaScript", "Php", "Bootstrap"];

console.log(subjects[0].length);
***
3 years ago