What is the result of the following code?
let x = true, y = false; let z = x || y ? 1 : 0; console.log(z);
true
false
1
0