Created
July 13, 2025 15:54
-
-
Save davidystephenson/af95bfae7b76dba66d2da5fa2ce94dc9 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
<script> | |
const localCounter = sessionStorage.getItem('counter') | |
console.log('savedCounter:', localCounter) | |
console.log('typeof savedCounter:', typeof localCounter) | |
const counter = Number(localCounter) | |
const newCounter = counter + 1 | |
const newCounterString = String(newCounter) | |
sessionStorage.setItem('counter', newCounterString) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment