0 / 60 seg.

What is the result of the following code?

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