What value is obtained when executing the following code?
let x = 5, y = 10;
if (x < y || x * 2 === y) {
x = x + y;
}
console.log(x);
What value is obtained when executing the following code?
let x = 5, y = 10;
if (x < y || x * 2 === y) {
x = x + y;
}
console.log(x);