Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 25, 2019 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/fde514a7f697a65365d30f8dfdb1ceee to your computer and use it in GitHub Desktop.
Save parzibyte/fde514a7f697a65365d30f8dfdb1ceee to your computer and use it in GitHub Desktop.
if(localStorage.hasOwnProperty("edad")){
// Perfecto, ya había un elemento con el id edad
}
// Otra forma:
if(localStorage.edad){
// Ok, hay edad
}
// Todavía otra forma
if(localStorage["edad"]){
// Ok hay edad :)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment