Skip to content

Instantly share code, notes, and snippets.

@russelljjarvis
Last active June 3, 2021 11:30
Show Gist options
  • Save russelljjarvis/0aa2bf06def6d3639d2774c87a5b0a27 to your computer and use it in GitHub Desktop.
Save russelljjarvis/0aa2bf06def6d3639d2774c87a5b0a27 to your computer and use it in GitHub Desktop.
javascript localStorage (check cache)
if (localStorage.getItem("localnet") === null) {
network = drawGraph();
localStorage.setItem('localnet', JSON.stringify(network));
}else{
network = localStorage.getItem('localnet')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment