Guest User

Untitled

a guest
Nov 20th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function firstItem([first, second] = ['luke', 'skywalker']) {
  2. return first;
  3. }
  4.  
  5. function findName({ name } = { name : 'darth' }) {
  6. return name;
  7. }
Add Comment
Please, Sign In to add comment