js check if session storage exists 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) {
//...
}