What value is printed when executing the following code?
let x = false; let y = !x ? 1 : 0; console.log(y);
1
true
0
false