What value is obtained when executing the following code?
let i = 3, j = 2;
if ((i * j > 5) && (i + j < 7)) {
j = 3;
}
console.log(j);
What value is obtained when executing the following code?
let i = 3, j = 2;
if ((i * j > 5) && (i + j < 7)) {
j = 3;
}
console.log(j);