0 / 60 seg.

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

let x = 4, y = 2;
if (x / (y * 2) === 1 && x - y === 2) {
  y = 3;
}
console.log(y);