Skip to content

Instantly share code, notes, and snippets.

@jq-87
Created February 13, 2019 19:03
Show Gist options
  • Save jq-87/b54dfa8a3c10ce8ecc0c4408cfd8ee13 to your computer and use it in GitHub Desktop.
Save jq-87/b54dfa8a3c10ce8ecc0c4408cfd8ee13 to your computer and use it in GitHub Desktop.
safely get an object property
const tryFn = (fn, fallback = null) => {
try {
return fn()
} catch (error) {
return fallback
}
}
const favoriteBook = tryFn(() => favorites.reading.book[0])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment