Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davidystephenson/1033a079c57160d22d6fe780fab161d4 to your computer and use it in GitHub Desktop.
Save davidystephenson/1033a079c57160d22d6fe780fab161d4 to your computer and use it in GitHub Desktop.
<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