Guest User

Untitled

a guest
Apr 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var num=Math.floor(Math.random()*200)+250;
  2. function dothis(){
  3.     if(num>0){
  4.         num=num-Math.floor(Math.random()*6);
  5.         document.getElementById('cd').innerHTML=num;
  6.         setTimeout(" dothis()",1500);
  7.     }else{
  8.         num=0;
  9.         document.getElementById('cd').innerHTML=num;
  10.     }
  11. }
  12. </script>
Add Comment
Please, Sign In to add comment