Skip to content

Instantly share code, notes, and snippets.

@DenisCangemi
Last active January 10, 2021 11:55
Show Gist options
  • Save DenisCangemi/32edde93e29f1813a4b881ba1b9a3c00 to your computer and use it in GitHub Desktop.
Save DenisCangemi/32edde93e29f1813a4b881ba1b9a3c00 to your computer and use it in GitHub Desktop.
let key = 'greeting1';
localStorage.setItem(key, 'Hello LocalStorage Again!');
let item = localStorage.getItem(key);
// Item : Hello LocalStorage Again!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment