Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jbutko/6c670c0270bf504aaab1ba94fe75f047 to your computer and use it in GitHub Desktop.
Save jbutko/6c670c0270bf504aaab1ba94fe75f047 to your computer and use it in GitHub Desktop.
The shortest way to conditional insert properties into an object literal
const obj = {
...condition && { prop: value },
};
// via From https://dev.to/jfet97/the-shortest-way-to-conditional-insert-properties-into-an-object-literal-4ag7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment