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

Level3>lesson6

what is value in second console??
by

1 Answer

iamabhishek
This is the correct answer:

let x = true;
let y = false;

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

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

Login / Signup to Answer the Question.