Skip to content

Instantly share code, notes, and snippets.

@eranimo
Created January 23, 2018 16:54
Show Gist options
  • Save eranimo/24dce48e2a94c98a990d32ec42b8afe8 to your computer and use it in GitHub Desktop.
Save eranimo/24dce48e2a94c98a990d32ec42b8afe8 to your computer and use it in GitHub Desktop.
a?.b // undefined if `a` is null/undefined, `a.b` otherwise.
a == null ? undefined : a.b // using ternary operators
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment