“Verifique se a tecla LocalStorage existe JS” Respostas de código

Verifique se a tecla LocalStorage existe

if (localStorage.getItem("username") === null) {
  //...
}
Blue Bear

Verifique se o item existe no JavaScript LocalStorage

//If the given key does not exist in the list associated with the object then this method must return null.

if (localStorage.getItem("infiniteScrollEnabled") === null) {
  //...
}
loneWolf_sage

Verifique se a tecla LocalStorage existe JS

if("user" in localStorage){
   alert('yes');
} else {
   alert('no');
}
Lokesh003

Respostas semelhantes a “Verifique se a tecla LocalStorage existe JS”

Perguntas semelhantes a “Verifique se a tecla LocalStorage existe JS”

Mais respostas relacionadas para “Verifique se a tecla LocalStorage existe JS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código