Skip to content

Instantly share code, notes, and snippets.

@tho-graf
Created June 7, 2019 18:46
Show Gist options
  • Save tho-graf/6224f1a2747bca17682f304c127ba2f3 to your computer and use it in GitHub Desktop.
Save tho-graf/6224f1a2747bca17682f304c127ba2f3 to your computer and use it in GitHub Desktop.
Optional Properties in Object (ES6)
const shouldAddB = true;
let obj = {a:1, ...(shouldAddB && {b:2})};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment