Skip to content

Instantly share code, notes, and snippets.

@thehulke
Created September 21, 2016 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thehulke/bf14e2132b2aabb932198228cbb42cc1 to your computer and use it in GitHub Desktop.
Save thehulke/bf14e2132b2aabb932198228cbb42cc1 to your computer and use it in GitHub Desktop.
// Spread Example
let obj = {
hero : "Superman",
firstName : "Clark"
}
let lastName = "Kent";
let newObj = {
...obj,
lastName
}
console.log(newObj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment