0
Clearing values in the localStorage: how to do this?
How is it possible to clear all values stored in the localStorage? Can anybody fill in the blanks in this combination? localStorage. (); localStorage. setItem( , ); Thanking you all in advance :)
1 Resposta
0
This is what I found to work.
***********************************
localStorage.clear()
localStorage.setItem("b","a");
***********************************