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