Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 25, 2019 19:56
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/93bbd351455ec532ca063d7fd2cde87c to your computer and use it in GitHub Desktop.
Save parzibyte/93bbd351455ec532ca063d7fd2cde87c to your computer and use it in GitHub Desktop.
localStorage.setItem("nombre", "Luis Cabrera Benito");
localStorage.setItem("edad", 123);
localStorage.setItem("recibirNotificaciones", true);
// Un objeto complejo
const mascota = {
nombre: "Maggie",
edad: 2,
amigos: ["Meca", "Guayaba", "Snowball"]
};
localStorage.setItem("mascota", JSON.stringify(mascota));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment