Guest User

Untitled

a guest
Oct 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function showCountDown () {
  2. var nextdate = new Date(2017, 9, 24, 10)
  3. var curDate = new Date()
  4. var seconds, minutes, hours
  5.  
  6. seconds = Math.floor((nextdate - curDate) / 1000)
  7. minutes = Math.floor(seconds / 60 )
  8. seconds = seconds % 60
  9. hours = Math.floor(minutes/60)
  10. minutes = minutes % 60;
  11.  
  12. console.log(hours + ':' + minutes + ':' + seconds)
  13. }
  14.  
  15. var interval = setInterval(showCountDown, 1000)
Add Comment
Please, Sign In to add comment