Skip to content

Instantly share code, notes, and snippets.

@tofusoup429
Last active October 18, 2020 02:00
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 tofusoup429/41e00ff9ac31af8a96fab88b4e96e449 to your computer and use it in GitHub Desktop.
Save tofusoup429/41e00ff9ac31af8a96fab88b4e96e449 to your computer and use it in GitHub Desktop.
let dataFetchedFromRemote = {
name:"ABC corp",
address: "4090 Shady Pines Drive Independence VA",
postalCode: "24348"
}
localStorage.setItem('companyInfo', JSON.stringify(dataFetchedFromRemote))
//Before setting item in localStorage, you have to make the data string.
//this code stores the dataFetchedFromRemote in the user's client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment