Created
November 19, 2017 10:41
-
-
Save kepta/b9ab7294dc4d08a21b955830738ff689 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
function firstItem([first, second] = ['luke', 'skywalker']) { | |
return first; | |
} | |
function findName({ name } = { name : 'darth' }) { | |
return name; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment