Created
January 16, 2018 00:48
-
-
Save Sstobo/43fb20f643008a48fe2c7e52109e31c2 to your computer and use it in GitHub Desktop.
[Spread operator]
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 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