Signup/Sign In

Answers

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

Try this one:
***



JS Window onload event


Welcome to Studytonight!


We hope you are enjoying the course.






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



CSS Flex Shrink




Item 1

Item 2

Item 3




***
2 years ago
Please provide level id and lesson id
2 years ago
Try this one:
***
let i = 0;

do{
console.log("--" + i + "--");
i += 5;
}
while(i <= 50);
***
2 years ago
Try this one :
***



<br /> My Webpage Title<br />








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


CSS Selectors



Studytonight


Our mission is to empower young Students to be the inventors and creators.





***
2 years ago
Try this one:
***
let myVar=10;
console.log(myVar);
***
2 years ago
Try this one:
***
let fruits = ["Apple", "Banana", "Mango", "Cherry", "Papaya"];
// write your code here
if (fruits[0].length===fruits.length)
{
console.log("Bingo");
}
else
{
console.log("Nope");
}
***
2 years ago
Try this one :
stop watch in js-course step 3
***



JS Stopwatch


JS Stopwatch Project



STOP Watch

00:00


Start
Stop
Reset






***
2 years ago
Try this one :
***
// create the function here
let welcome=(a,b)=>console.log(a+b);
// calling the function
welcome("Hello ", "Studytonight");
***
2 years ago
Try this one :
***



CSS animation timing function






***
2 years ago
Try this one:
***
function scanAndPay(item, amount)
{
console.log("Welcome to scan and pay service");
console.log(`Payment of ${amount} done for purchasing ${item}.`);
}

function orderFood(item)
{
switch(item)
{
case "Burger":
scanAndPay(item,50);
break;
case "Cold Drink":
scanAndPay(item,30);
break;
case "Pizza":
scanAndPay(item,100);
break;
}
}
orderFood("Pizza");
***
2 years ago