Guest User

Untitled

a guest
Apr 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const sum = (param1, param2) => {
  2. return param1 + param2
  3. }
  4.  
  5. /**
  6. *We can easily just remove the {}
  7. *and rewrite as
  8. */
  9. const sum = (param1, param2) => param1 + param2;
Add Comment
Please, Sign In to add comment