0 / 60 seg.

What is the result of the following code?

let x = true, y = false;
let z = x || y ? 1 : 0;
console.log(z);