const a = 0 || "fallback"; const b = "" || "fallback"; const c = "value" || "fallback"; console.log(a, b, c);