Created
July 14, 2024 00:47
-
-
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
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
| 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