how to check if an item is present in local storage code example
Example: 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) {
//...
}