Skip to content

Instantly share code, notes, and snippets.

@questsin
Created February 20, 2019 15:07
Show Gist options
  • Save questsin/49b373e3b12836dc895e0caf317f76df to your computer and use it in GitHub Desktop.
Save questsin/49b373e3b12836dc895e0caf317f76df to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head><title>blank</title></head>
<body>
<script>
// Store
localStorage.setItem("lastname", "Smith");
// Retrieve
document.getElementById("result").innerHTML = localStorage.getItem("lastname");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment