Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <script type="text/javascript">
  2. var count = new Number();
  3. var count = 300;
  4.  
  5. function start(){
  6. if ((count - 1) >=0) {
  7. count=count - 1;
  8. if (count == 0) {
  9. count= "Fim!";
  10. }
  11. tempo.innerText=count;
  12. setTimeout('start()',1000);
  13. }
  14. }
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement