Advertisement
TheTintin

Untitled

May 6th, 2017
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function getScorer(init) {
  2. var i = init;
  3.  
  4. return function(amount) {
  5. i += amount;
  6. return i;
  7. };
  8. }
  9.  
  10. var addToScore = getScorer(5);
  11.  
  12. debug(addToScore(2));
  13. debug(addToScore(4));
  14. debug(addToScore(7));
  15. debug(addToScore(1));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement