Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

let x = true;
let y = false;

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

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


**give proper indentation please bro **
2 years ago