---
date: 2025-04-15T10:48:18+00:00
modified: 2025-04-15T10:48:18+00:00
permalink: https://kaspars.net/note/mastodon-social-114342290958916122
post_type: note
author:
  name: Kaspars
  avatar: https://reverse.kaspars.net/gravatar/avatar/92bfcd3a8c3a21a033a6484d32c25a40b113ec6891f674336081513d5c98ef76?s=96&d=mm&r=g
---

# On April 15, 2025 at 13:48

Optional Chaining &amp; 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.