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');
source
share