What value is obtained when executing the following code?
let t = 3, u = 6;
if (t * 2 == u && t + u == 9 || t - u == -3) {
t = t + u;
}
console.log(t);
What value is obtained when executing the following code?
let t = 3, u = 6;
if (t * 2 == u && t + u == 9 || t - u == -3) {
t = t + u;
}
console.log(t);