kennysong
kennysong

Reputation: 524

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.

Upvotes: 1

Views: 878

Answers (1)

Jon Carter
Jon Carter

Reputation: 3406

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

Upvotes: 2

Related Questions