-Annie-

sumThreeNumbers

May 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function sumNumbers(a, b, c) {
  2.   let sum = a + b + c;
  3.   console.log(sum);
  4. }
Advertisement
Add Comment
Please, Sign In to add comment