What is the result of the following code?
let i = 1, j = 0; if (i > j && i + j === 1) { j = 2; } console.log(j);
0
1
2
3