0 / 60 seg.

¿Qué valor se imprime al ejecutar el siguiente código?

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