//make an xor condition in javascript
if ((a && !b) || (!a && b)) {
}
const a = 5; // 00000000000000000000000000000101
const b = 3; // 00000000000000000000000000000011
// xor operator ^
console.log(a ^ b); // 00000000000000000000000000000110
// expected output: 6
const XOR = (bool1, bool2) =>
(bool1 && !bool2) || (!bool1 && bool2)
let x1 = true || false && false;
let x2 = (true || false) && false;
let x3 = !false && false;
let x4 = !(false && false);
if (a != b)