Signup/Sign In

Answers

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

Try this one:
***
/*
js he\llo world
*/
console.log("He\llo World!");
//console.log("Some debugging information");
***
2 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);
***
2 years ago
Try this one:
***
let holidayPlan = {venue:"Maldives", duration: "4 days", cost: 150000, person: 2};

let costPerPerson=holidayPlan.cost/holidayPlan["person"];

console.log(costPerPerson);
***
2 years ago
Try this one:
***


Javascript with HTML



Some Page Heading


Click me!


***
2 years ago
Try this one: Level 8 Lesson 7
***
/* Add function expression here*/
let square;
square=function(num)
{
return num*num
};
let result=square(5);
console.log(result);
***
2 years ago
Try this one:
***



Adding breakpoint according to device



Resize the browser window to see how the background color of this paragraph change on different screen sizes.




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



CSS Grid Item Placement




1

2

3

4

5

6

7

8

9




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



CSS transform property



I am rotated

I am skewed

Translate me!

Scale me!



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



CSS Grid Item Placement




1

2

3

4

5

6

7

8

9




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

if(raining)
{
console.log("Stay at home!");
}
else
{
console.log("Go to Office!");
}
***
2 years ago
Try this one :
***



<br /> My login page<br />


Login form

















***
2 years ago