I have the following:
var allItems = {Items: [
{Value: 1, Name: "String1"},
{Value: 2, Name: "String2"},
{Value: 3, Name: "String3"}
]
};
localStorage.setItem('allItems', allItems);
I'm struggling to access any properties of allItems
after retrieving it from localStorage. How would I say access the Name of the second object in the array Items?