Created
March 1, 2019 07:29
-
-
Save joelnet/1abc665c56bf94fcf7152642844a9ac9 to your computer and use it in GitHub Desktop.
This file contains 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 user2 = { | |
id: 200, | |
name: 'Vince Noir' | |
} | |
const user4 = { | |
id: 400, | |
name: 'Bollo', | |
quotes: ["I've got a bad feeling about this..."] | |
} | |
const setDefaults = ({ quotes = [], ...object}) => | |
({ ...object, quotes }) | |
setDefaults(user2) | |
//=> { id: 200, name: 'Vince Noir', quotes: [] } | |
setDefaults(user4) | |
//=> { | |
//=> id: 400, | |
//=> name: 'Bollo', | |
//=> quotes: ["I've got a bad feeling about this..."] | |
//=> } |
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