Toda vez que eu recarrego a página a lista permanece porém com os elementos vazios... Alguém por favor pode me ajudar a identificar o erro?
const form = document.getElementById("novoItem");
const lista = document.getElementById("lista");
const itens = JSON.parse(localStorage.getItem("itens")) || [];
itens.forEach( (elemento)=> {
criaElemento(elemento);
});
form.addEventListener("submit", (evento)=> {
evento.preventDefault();
const nome = evento.target.elements['nome'];
const quantidade = evento.target.elements['quantidade'];
const itemAtual = {
"nome": nome.value,
"quantidade": quantidade.value
}
criaElemento(itemAtual);
itens.push(itemAtual);
localStorage.setItem("itens", JSON.stringify(itens));
nome.value = "";
quantidade.value = "";
});
function criaElemento(item) {
const novoItem = document.createElement("li");
novoItem.classList.add("item");
const numeroItem = document.createElement("strong");
numeroItem.innerHTML = quantidade.value;
novoItem.appendChild(numeroItem);
novoItem.innerHTML += nome.value;
lista.appendChild(novoItem);
}