Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var newText = [`
- <html>
- <head>
- <title>Basic Clicker Game</title>
- <body>
- <center>
- <a id="clicks"></a>
- <br>
- <button onClick="addClicks()">Click</button>
- </center>
- </body>
- <script>
- clicks = 0
- function addClicks() {
- clicks++
- }
- setInterval("document.getElementById('clicks').innerText=clicks",1)
- </script>
- </head>
- </html>
- `]
- document.write(newText)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement