Search code examples
javascripthtmlsession-storage

Is there a way to clear one line of session storage?


I am trying to clear one line of session storage, therefore

sessionStorage.clear();

doesn't work. I tried using

.setItem()

as well but that isn't really what I am looking for because I want to clear it not set it to anything.


Solution

  • I think what you're looking for is sessionStorage.removeItem()