What value is obtained when executing the following code?
let f = 0, g = true;
let t = (f > 0) || (g && f >= 0);
console.log(t);
What value is obtained when executing the following code?
let f = 0, g = true;
let t = (f > 0) || (g && f >= 0);
console.log(t);