Created
November 20, 2018 20:12
-
-
Save tuvo1106/0fceb925302eb6ad0a799dc93ba0d048 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 object1 = {name: 'Tu', hobbies: 'coding'} | |
createNewObjectWithES6 = (prevObj, key, value) => { | |
return { | |
...prevObj, | |
[key]: value | |
} | |
} | |
console.log(createNewObjectWithES6(object1, 'age', 31)) | |
// { name: 'Tu', hobbies: 'coding', age: 31 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment