๐ฎ Output PredictionTS TypeScript Medium+20 XP
Optional Chaining
What is the output?
TypeScript
const user = { name: "Alice", address: undefined };
console.log(user.address?.city ?? "Unknown");What is the output?
const user = { name: "Alice", address: undefined };
console.log(user.address?.city ?? "Unknown");