0 / 60 seg.

What is the result of the following code?

let g = 1, h = 2;
if ((g !== h) && (g + h === 3 && g - h < 2)) {
  h = 1;
}
console.log(h);