Created
July 16, 2019 16:06
-
-
Save igeligel/5ee875f9072a8e127e7583e240ad2696 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 person = { | |
firstName: "Max" | |
}; | |
const condition = getCondition(); | |
const additionalCondition = getAdditionalCondition(); | |
if (condition) { | |
person.lastName = ""; | |
} | |
if (additionalCondition) { | |
person.addition = ""; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment