Last active
January 3, 2018 18:07
-
-
Save gonaumov/c4656bddc01b50d49dc8600f4132a4a9 to your computer and use it in GitHub Desktop.
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
// Until now I didn't know about this. | |
// We can change name of destructed | |
// variable or function. | |
const {first: third, second: fourth } = { | |
first: () => console.log('first'), | |
second: () => console.log('second') | |
} | |
third() | |
fourth() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will show 'first' and 'second' in console.