Skip to content

Instantly share code, notes, and snippets.

@Shakil-Shahadat
Last active June 22, 2024 15:36
Show Gist options
  • Save Shakil-Shahadat/44ccbc1323b13a93319a750df81684da to your computer and use it in GitHub Desktop.
Save Shakil-Shahadat/44ccbc1323b13a93319a750df81684da to your computer and use it in GitHub Desktop.
[ Delete ] localStorage Store & Retrieve Test
// Store
localStorage.setItem( 'name', 'Smith' );
// Retrieve
console.log( localStorage.getItem( 'name' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment