Could you tell me how to empty the data in localStorage?

could you tell me how to clear the data in localStorage

Apr.08,2022

localStorage.clear ()


  1. remove the specified attribute

localStorage.removeItem (');

  1. remove all

localStorage.clear ();

Menu