tsekotsolov

Untitled

Feb 23rd, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Clicker</title>
  6.     <meta name="description" content="">
  7.     <style></style>
  8. </head>
  9. <body>
  10.     <button>Click!</button>
  11.  
  12. <script>
  13.     const counter = {
  14.         cnt: 0,
  15.         inc: function() {
  16.             cnt++;
  17.             console.log(cnt);
  18.         }
  19.     };
  20.     const button = document.getElementsByTagName('button')[0];
  21.     button.addEventListener('click', counter.inc(), false);
  22. </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment