Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4. <meta charset="UTF-8" >
  5. <title>Exer 2</title>
  6. </head>
  7. <body>
  8. <button>Gerar</button>
  9. <h2></h2>
  10. <script>
  11. document.querySelector("button").onclick = gerar;
  12.  
  13. function gerar() {
  14. var r = Math.floor(Math.random() * 50);
  15. document.querySelector("h2").innerHTML = r;
  16. }
  17. </script>
  18. </body>
  19.  
  20.  
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement