Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

JavaScript level 4 lesson 6 solve now

let myVar = 10;

if (myVar < 20 || myVar >= 40) {
console.log("I am log...");
}
it is showing have you added conditions properly
by

1 Answer

sam5epi0l
I would request you try the following format for the if block.


let myVar = 10;

if(myVar < 20 || myVar >= 40)
{
console.log("I am log...");
}

Login / Signup to Answer the Question.