What is the result of the following code?
let a = 2, b = 3;
if ((a + b) * 2 === 10 || a - b === 1) {
a = 5;
}
console.log(a);
What is the result of the following code?
let a = 2, b = 3;
if ((a + b) * 2 === 10 || a - b === 1) {
a = 5;
}
console.log(a);