What value is printed when executing the following code?
let m = 1, n = 2;
if ((m + n) * m > 2 or n - m !== 1) {
m = 2;
}
console.log(m);
What value is printed when executing the following code?
let m = 1, n = 2;
if ((m + n) * m > 2 or n - m !== 1) {
m = 2;
}
console.log(m);