Created
April 26, 2019 10:02
-
-
Save morellodev/db236c1612c6ffb11d8e28154ce4a3c2 to your computer and use it in GitHub Desktop.
LocalStorage - Retrieve Data
This file contains hidden or 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
| let savedTheme; | |
| if ('localStorage' in window) { | |
| savedTheme = localStorage.getItem('theme'); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment