Level 3 lesson 6 : Answer not accepting on submit
the system is not accepting the answer even when its right.
In the first console.log() statement, use the AND and NOT logical operator with x and y, such that the output is true.
In the next console.log() statement, use the OR logical operator and single NOT logical operator with x and y. The output should be false.
Solution:
let x = true;
let y = false;
// apply AND operator
console.log (x && !y );
// apply OR operator
console.log(!x||y);