0 / 60 seg.

What value is obtained when executing the following code?

let f = 0, g = true;
let t = (f > 0) || (g && f >= 0);
console.log(t);