Guest User

Untitled

a guest
Jun 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setTimeout(func1(){
  2.     //some actions in func 1
  3.     setTimeout(func2(){
  4.         //some action in func 2
  5.         setTimeout(func3(){
  6.             //some action in func 3
  7.         },3000);
  8.     },2000);
  9.  
  10. },1000);
Add Comment
Please, Sign In to add comment