Categories
Checks if a specific item exists in localStorage.
Contributed by @ditinagrawal
function isItemInLocalStorage(key) { return localStorage.getItem(key) !== null; }
isItemInLocalStorage("user"); // Output: true or false