On April 15, 2025 at 13:48

Responded to @kasparsd:

Optional Chaining & Nullish Coalescing 📜 ES2020

const what = user?.profile?.name ?? 'N/A';

Reads the value of name without undefined crashes, and returns 'N/A` if not present.