Guest User

Untitled

a guest
Oct 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. $ cat add.js
  2. var addition = function (a, b) {
  3.  
  4. a += b;
  5.  
  6. }
  7.  
  8. var foo = 5;
  9.  
  10. addition(foo, 3);
  11.  
  12. console.log("foo=" + foo);
  13.  
  14. $ node add.js
  15. foo=5
Add Comment
Please, Sign In to add comment