Skip to content

Instantly share code, notes, and snippets.

@bernard-leech
Last active April 26, 2019 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bernard-leech/4b94427699436b63c67ac6f2c2d8c4f6 to your computer and use it in GitHub Desktop.
Save bernard-leech/4b94427699436b63c67ac6f2c2d8c4f6 to your computer and use it in GitHub Desktop.
Favoured Object Destructuring Pattern
const defaultsMain = {
content: {
title: 'defaultTitle',
description: 'defaultDescription'
}
}
const defaultObj = { main: defaultsMain }
const {
main: {
content: { title }
}
} = obj || defaultObj
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment