const a = 0 ?? "fallback"; const b = null ?? "fallback"; const c = undefined ?? "fallback"; console.log(a, b, c);