Guest User

Untitled

a guest
Dec 12th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. var counter = 0;
  2.  
  3. function increment (num) {
  4. counter += num;
  5. }
  6.  
  7.  
  8. increment(2);
  9. increment(4);
  10. console.log('counter is ', counter)
Add Comment
Please, Sign In to add comment