Guest User

Untitled

a guest
May 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. //普通にクロージャになってる
  2.  
  3. function make_counter() {
  4. var x = 0;
  5. function count(){
  6. x += 1;
  7. return x;
  8. }
  9. return count;
  10. }
Add Comment
Please, Sign In to add comment