How Do I check In which place our localStrorage data stored in our system?

Viewed 120

I have implemented the login functionality in which i have to set the uname and password into the localStorage API.I want to know which place our data will be stored?

localStorage.setItem('userName', JSON.stringify(data.uname));
localStorage.getItem('userName');
1 Answers
Related