0 / 60 seg.

What is the result of the following code?

let i = 1, j = 0;
if (i > j && i + j === 1) {
  j = 2;
}
console.log(j);