Created
November 2, 2018 07:02
-
-
Save yingjieg/de91588c4a98d998b8bbcba1833edff3 to your computer and use it in GitHub Desktop.
JavaScript ES6 Tips
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 data = { | |
| a: 1, | |
| b: 2, | |
| c: 3 | |
| }; | |
| const { a, ...newData } = data; | |
| console.log(newData); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment