0 / 60 seg.

What value is printed when executing the following code?

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