Skip to content

Instantly share code, notes, and snippets.

@Robin-bob
Created October 28, 2016 16:11
Show Gist options
  • Save Robin-bob/f01de1c8464d5160dd70d3f3d0fd4f4e to your computer and use it in GitHub Desktop.
Save Robin-bob/f01de1c8464d5160dd70d3f3d0fd4f4e to your computer and use it in GitHub Desktop.
local storage check
if (localStorage.getItem('dontLoad') === null) {
console.log('visited in not in LocalStorage')
localStorage.setItem('dontLoad', 'visited');
} else {
console.log('visited is in LocalStorage')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment