Guest User

Untitled

a guest
Jan 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // Exercise 2 - Closures
  2. // Wrap the following code in a closure and export only the "countdown" function.
  3.  
  4. // Code
  5. (function (win, name) {
  6. var index;
  7.  
  8. function log(){
  9. console.log(index);
  10. }
  11.  
  12. function iterate(){
  13. log();
  14. if(index>1) setTimeout(iterate, 1000);
  15. index--;
  16. }
  17.  
  18. function countdown(){
  19. index = 10;
  20. iterate();
  21. }
  22. win[name]= countdown;
  23.  
  24. })(this, 'countdown')
Add Comment
Please, Sign In to add comment