Advertisement
Guest User

Untitled

a guest
Oct 1st, 2020
714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // BIEN !
  2. let sum = (x, y) => x + y;
  3.  
  4. // PAS BIEN !
  5. // let sum = (x, y) => {x + y};
  6.  
  7. document.write(sum(4, 5));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement