Advertisement
dhshin

practice_10

Jun 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function sum(a, b) {
  2.   return a + b;
  3. }
  4.  
  5. console.log(sum(1, 3));
  6.  
  7. let a = 3, b = 5;
  8.  
  9. console.log(sum(a, b));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement