0 / 60 seg.

What value is obtained when executing the following code?

let a = 10, b = 5;
if (a > b && a + b === 15 || a - b === 5) {
  a = a * 2;
}
console.log(a);