Skip to main content
🔮 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?