How to check in which places our local storage data is stored in our system?

I implemented a login function in which I need to set uname and password in the API localStorage. I want to know in what place our data will be stored?

localStorage.setItem('userName', JSON.stringify(data.uname));
localStorage.getItem('userName');
+4
source share
1 answer

In Chrome, just go to the developer tools by pressing F12, then go to the "Application" tab and go to the "Local storage" option. After that, you will see all the local storage of the browser.

Source: fooobar.com/questions/38669 / ...

+2
source

Source: https://habr.com/ru/post/1681055/


All Articles