Skip to content

Instantly share code, notes, and snippets.

@devinschumacher
Created July 14, 2024 00:47
Show Gist options
  • Select an option

  • Save devinschumacher/8fc47e3769e1f399f42366f8de7cfd75 to your computer and use it in GitHub Desktop.

Select an option

Save devinschumacher/8fc47e3769e1f399f42366f8de7cfd75 to your computer and use it in GitHub Desktop.
console.log() your local storage state of the browser from dev tools console
Object.keys(localStorage).forEach(key => {
console.log(key, localStorage.getItem(key));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment