Skip to content

Instantly share code, notes, and snippets.

@Sstobo
Created January 16, 2018 00:48
Show Gist options
  • Select an option

  • Save Sstobo/43fb20f643008a48fe2c7e52109e31c2 to your computer and use it in GitHub Desktop.

Select an option

Save Sstobo/43fb20f643008a48fe2c7e52109e31c2 to your computer and use it in GitHub Desktop.
[Spread operator]
const array = [
[name: sean,
age: 35,
height: 6
]
const CopyOfArray = { ...array };
##### Spread is how we copy arrays
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment