Skip to content

Instantly share code, notes, and snippets.

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