Created
July 16, 2019 16:14
-
-
Save igeligel/ce63894b5785e152d5ab017ad77509d8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 condition = getCondition(); | |
const additionalCondition = getAdditionalCondition(); | |
const person = { | |
firstName: "Max", | |
...(condition && { lastName: "" }), | |
...(additionalCondition && { addition: "" }) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment