Created
June 27, 2019 09:55
-
-
Save oelmekki/4475ef613c9982109fb6fb9103f7f15a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script> | |
document.addEventListener("DOMContentLoaded", () => { | |
localStorage.setItem("foo", "bar"); | |
document.querySelector("p").innerHTML = "localStorage"; | |
}); | |
</script> | |
</head> | |
<body> | |
<p>not localStorage</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment