Guest User

Untitled

a guest
Dec 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. //normal function
  2. function square(x) {
  3. return x * x;
  4. }
  5.  
  6. //same
  7. var square = (x) => {
  8. return x * x;
  9. }
  10. //same
  11. var square = (x) => x * x;
  12.  
  13. //same
  14. //if there is only one argument we can use
  15. var square = x => x * x;
Add Comment
Please, Sign In to add comment