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

In Level 3 > Lesson 6 the instructions are not clear.

I'm trying to submit the following code which returns true and then false as requested:

let x = true;
let y = false;

// apply AND operator
console.log(x==true && y!=x);

// apply OR operator
console.log(x = y || x!=true)
by

0 Answers

No Answer posted yet.

Login / Signup to Answer the Question.