I am displaying data from localstorage but the problem is it doesn't have any formatting so everything is jumbled together. Is there something I can do to style it?
I am getting these values like this -
function getItem() {
const item = localStorage.getItem('name');
return document.getElementById('favsarray').innerHTML = JSON.stringify(item);
}
getItem()