Created
June 7, 2019 18:46
-
-
Save tho-graf/6224f1a2747bca17682f304c127ba2f3 to your computer and use it in GitHub Desktop.
Optional Properties in Object (ES6)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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