Guest User

Untitled

a guest
Jul 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. MyStuff = function(container) {
  2. var index;
  3.  
  4. function log(){
  5. console.log(index);
  6. }
  7.  
  8. function iterate(){
  9. log();
  10. if(index>1) setTimeout(iterate, 1000);
  11. index--;
  12. }
  13.  
  14. return container['countdown'] = function(){
  15. index = 10;
  16. iterate();
  17. }
  18.  
  19. }(this);
  20.  
  21. console.log(countdown());
  22. console.log(log())
Add Comment
Please, Sign In to add comment