Skip to content

Instantly share code, notes, and snippets.

@tuvo1106
Created November 20, 2018 20:12
Show Gist options
  • Save tuvo1106/0fceb925302eb6ad0a799dc93ba0d048 to your computer and use it in GitHub Desktop.
Save tuvo1106/0fceb925302eb6ad0a799dc93ba0d048 to your computer and use it in GitHub Desktop.
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