What value is printed when executing the following code?
let r = 4, s = 6;
if (r < s && r + s < 12 || r - s > 1) {
r = s;
}
console.log(r);
What value is printed when executing the following code?
let r = 4, s = 6;
if (r < s && r + s < 12 || r - s > 1) {
r = s;
}
console.log(r);