Guest User

Untitled

a guest
Jan 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. let f = (...f) => f;
  2. console.log(f(10));
  3.  
  4. f = (...f) => f.reduce(f => f);
  5. console.log(f(10));
  6.  
  7. function ff() {
  8. return arguments;
  9. }
  10. console.log(ff(10));
  11.  
  12. f = f => f;
  13. console.log(f(10));
Add Comment
Please, Sign In to add comment