Example:
let a = !(false && x); let b = false || x;
After the quick fix is applied the result looks like:
let a = true; let b = x;