0 / 60 seg.

What value is obtained with the following code?

let p = false, q = true;
if (p && q || !p) {
  p = !p;
}
console.log(p);