Skip to content

Instantly share code, notes, and snippets.

@JimmyLv
Created January 19, 2021 13:47
Show Gist options
  • Select an option

  • Save JimmyLv/f95d157da82164c8a3085bd18cde068d to your computer and use it in GitHub Desktop.

Select an option

Save JimmyLv/f95d157da82164c8a3085bd18cde068d to your computer and use it in GitHub Desktop.
Created with Copy to Gist
var names = [];
names[0] = prompt("New member name?");
localStorage.setItem("names", JSON.stringify(names));
//...
var storedNames = JSON.parse(localStorage.getItem("names"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment