How to check whether a Storage item is set?
2022-08-29 23:39:27
How can I check if an item is set in ? Currently I am usinglocalStorage
if (!(localStorage.getItem("infiniteScrollEnabled") == true || localStorage.getItem("infiniteScrollEnabled") == false)) {
// init variable/set default variable for item
localStorage.setItem("infiniteScrollEnabled", true);
}