how to check is the key of a localstorage is emopty

Solutions on MaxInterview for how to check is the key of a localstorage is emopty by the best coders in the world

showing results for - "how to check is the key of a localstorage is emopty"
Moritz
30 Aug 2016
1if (localStorage.getItem("username") === null) {
2  //...
3}
4