-
-
Save 3v0k4/47fcdc2dfc1661cfb240748fc0d97f1b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| button { | |
| font-size: 1.5rem; | |
| } | |
| span { | |
| font-weight: bold; | |
| margin-left: 1rem; | |
| } | |
| </style> | |
| <button>+</button> | |
| <span>0</button> | |
| <script> | |
| document.querySelector('button').addEventListener('click', () => { | |
| const span = document.querySelector('span') | |
| const i = parseInt(span.innerText, 10) | |
| span.innerText = String(i+1) | |
| }) | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment