const x = false || 12; const y = 5 && "text"; const z = 0 ?? {}; console.log(x,y,z);