Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Clicker</title>
- <meta name="description" content="">
- <style></style>
- </head>
- <body>
- <button>Click!</button>
- <script>
- const counter = {
- cnt: 0,
- inc: function() {
- cnt++;
- console.log(cnt);
- }
- };
- const button = document.getElementsByTagName('button')[0];
- button.addEventListener('click', counter.inc(), false);
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment