Advertisement
kalovski

Untitled

Sep 19th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. function sum(a = 2, b = 4) {
  2. return a + b;
  3. }
  4.  
  5. console.log( sum() );
  6. // 6
  7.  
  8. console.log( sum(3, 6) );
  9. // 9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement