Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ivan-hilckov/b7906e2c2501e1937bc514d69531625c to your computer and use it in GitHub Desktop.
Save ivan-hilckov/b7906e2c2501e1937bc514d69531625c to your computer and use it in GitHub Desktop.
const user = { id: 100, name: 'Howard Moon' }
const password = 'Password!'
const userWithPassword = {
...user,
id: 100,
...(password && { password })
}
userWithPassword //=> { id: 100, name: 'Howard Moon', password: 'Password!' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment