Created
March 1, 2019 07:21
-
-
Save joelnet/0d1c4d79ae945e4311436691aaf238b1 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 part1 = { id: 100, name: 'Howard Moon' } | |
const part2 = { id: 100, password: 'Password!' } | |
const user1 = { ...part1, ...part2 } | |
//=> { 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
This gist is written for 7 Tricks with Resting and Spreading JavaScript Objects