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