What value is obtained when executing the following code?
let e = 3, f = 2;
if ((e > f) && (e + f > 4 || e - f === 1)) {
f = 3;
}
console.log(f);
What value is obtained when executing the following code?
let e = 3, f = 2;
if ((e > f) && (e + f > 4 || e - f === 1)) {
f = 3;
}
console.log(f);