Skip to content

Instantly share code, notes, and snippets.

@anupammaiti
Created September 9, 2021 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anupammaiti/248f6cd22cbf0bd5f88ee968c56a282a to your computer and use it in GitHub Desktop.
Save anupammaiti/248f6cd22cbf0bd5f88ee968c56a282a to your computer and use it in GitHub Desktop.
Print All Local Storage Data Crome
function listAllItems(){
for (i=0; i<localStorage.length; i++)
{
key = localStorage.key(i);
console.log(key+":"+localStorage.getItem(key))
}
}
listAllItems();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment