Skip to content

Instantly share code, notes, and snippets.

@hebertcisco
Created April 10, 2021 22:06
Show Gist options
  • Save hebertcisco/1c2af48843354122da5430052d9b20b8 to your computer and use it in GitHub Desktop.
Save hebertcisco/1c2af48843354122da5430052d9b20b8 to your computer and use it in GitHub Desktop.
Armazenando dados JSON
// Armazenando dados:
meuObj = {nome: "Hebert", idade: 19, cidade: "Gyn"};
meuJSON= JSON.stringify(meuObj );
localStorage.setItem("testJSON", meuJSON);
// Recuperando dados:
text = localStorage.getItem("testJSON");
obj = JSON.parse(text);
document.getElementById("demo").innerHTML = obj.name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment