In IE11, you can see local storage in console on dev tools:
- Show dev tools (press F12)
- Click “Console” or press Ctrl+2
- Type
localStorage
and press Enter
Also, if you need to clear the localStorage, type localStorage.clear()
on console.
In IE11, you can see local storage in console on dev tools:
localStorage
and press EnterAlso, if you need to clear the localStorage, type localStorage.clear()
on console.