-2

Can we clear the browser local storage from a webpage.

I can do it by going into the developer tools but my team wants that option in our webpage so that they can simply hit the clear button from the webpage and clear all the browser storage

Mayank Shukla
  • 100,735
  • 18
  • 158
  • 142
santhu
  • 1
  • 1

1 Answers1

0

Use below code line to clear localStorage:

localStorage.clear();
Salman
  • 333
  • 4
  • 18