I want to acess all the localStorage variables saved on a specific page. How do I do that? I want to show it like I would show an array with the join() function
You can retrieve the data from localStorage using localStorage. getItem function. Once you have the data, iterate through the cart attribute, and use javascript template strings to create the html structure.
You could try iterating through all of the items in the localStorage object:
for (var i = 0; i < localStorage.length; i++){
// do something with localStorage.getItem(localStorage.key(i));
}
I use this block of code frequently:
var i;
console.log("local storage");
for (i = 0; i < localStorage.length; i++) {
console.log(localStorage.key(i) + "=[" + localStorage.getItem(localStorage.key(i)) + "]");
}
console.log("session storage");
for (i = 0; i < sessionStorage.length; i++) {
console.log(sessionStorage.key(i) + "=[" + sessionStorage.getItem(sessionStorage.key(i)) + "]");
}
Console log the localStorage. It's very simple.
console.log(localStorage);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With