0 / 60 seg.

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

let i = 3, j = 2;
if ((i * j > 5) && (i + j < 7)) {
  j = 3;
}
console.log(j);