How to check if local storage is emppty code example
Example 1: local storage check if key exists
if (localStorage.getItem("username") === null) {
//...
}
Example 2: how to check is the key of a localstorage is emopty
if (localStorage.getItem("username") === null) {
//...
}