Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var i = 0
  2.  
  3. function print() {
  4. i++;
  5. if (i <= 3) {
  6. console.log(new Date(),'Hello world')
  7. setTimeout(print, 2000)
  8. }
  9. else {
  10. console.log(new Date(),'OK Done...')
  11. }
  12. }
  13.  
  14. print()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement