Answers for "whow to check if localstorage item exists"

1

check if item exists in localstorage javascript

//If the given key does not exist in the list associated with the object then this method must return null.

if (localStorage.getItem("infiniteScrollEnabled") === null) {
  //...
}
Posted by: Guest on June-03-2021

Code answers related to "whow to check if localstorage item exists"

Code answers related to "Javascript"

Browse Popular Code Answers by Language