Created
June 8, 2020 06:27
-
-
Save bacongravy/55cab1820a04666564f0070e3d1b1e0b 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
| fetch("/count") | |
| .then(response => response.json()) | |
| .then(count => { | |
| document.getElementById("visitorCount").innerHTML = count; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment