Skip to content

Instantly share code, notes, and snippets.

@igeligel
Created July 16, 2019 16:06
Show Gist options
  • Save igeligel/5ee875f9072a8e127e7583e240ad2696 to your computer and use it in GitHub Desktop.
Save igeligel/5ee875f9072a8e127e7583e240ad2696 to your computer and use it in GitHub Desktop.
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