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

Level 3 lesson 6 in Java Script tutorial

I can't find the right solution for this
by

1 Answer

kshitijrana14
Try this one

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.