Signup/Sign In

Answers

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

please mention level and lesson id
3 years ago
Please make sure level and lesson id
Try this one if you are on LEVEL 16 and Lesson 4
***



CSS Grid Item Placement




1

2

3

4

5

6

7

8

9




***
3 years ago
Try this one level 2 lesson 6
***
// Please write your code here

const myConst="Studytonight";
console.log(myConst);
***
3 years ago
Try this one level 2 lesson 5
***
// write your code here

var myVar;
console.log(myVar);

var myVar=null;
console.log(myVar);
***
3 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);
***
3 years ago
Try this one
***
// Please write your code here

const myConst="Studytonight";
console.log(myConst);
***
3 years ago
Try this one
***
let x = 'I love \'Chocolate\'\\\'Butterscotch\' ice cream.';

// log the variable
console.log(x);
***
3 years ago
Try this one
***


Website






Sidebar

Main




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



Modify HTML Element in JS


This is a heading


Then comes a paragraph or a bunch of paragraphs.


So let's add another paragraph.



Hello JS!

Hello JS again!







***
3 years ago
Try this one
***
function teaBreak(){
console.log("Start making tea");
console.log("Tea ready");
console.log("Enjoy the tea");
}

let teaHour;

for(teaHour=1; teaHour<=12; teaHour++)
{
if (teaHour%4== 0)
{
teaBreak();
}
}
***
3 years ago
Try this one
***
let x = 0;

while(x < 10){
if(x === 5) {
x++;
continue;
}
console.log(x);
x++;
}
***
3 years ago
Try this one
***



Studytonight






GOOGLE


Google make it simple!




About Me


ABCDEFGHIJKALMNOPQRSTUVWXYZZYXWVUTSRQPONMLAKJIHGFEDCBA





***
3 years ago