What value is obtained with the following code?
let p = false, q = true; if (p && q || !p) { p = !p; } console.log(p);
p
false
true
q