What value is printed when executing the following code?
let m = 1, n = 2, o = 3;
if (m < n && n < o || m + n > o) {
o = m;
}
console.log(o);
What value is printed when executing the following code?
let m = 1, n = 2, o = 3;
if (m < n && n < o || m + n > o) {
o = m;
}
console.log(o);