Sometimes, we want to get HTML5 localStorage keys with JavaScript.
In this articlke, we’ll look at how to get HTML5 localStorage keys with JavaScript.
How to get HTML5 localStorage keys with JavaScript?
To get HTML5 localStorage keys with JavaScript, we use the Object.entries
method.
For instance, we write
const entries = Object.entries(localStorage);
to call Object.entries
with localStorage
to return an array of key-value pair arrays from localStorage
.
Conclusion
To get HTML5 localStorage keys with JavaScript, we use the Object.entries
method.