meu código está apresentando esse erro e não estou conseguindo resolver, se alguem poder ajudar fico grato.
Uncaught TypeError: itens.forEach is not a function
at main.js:9:7
const form = document.getElementById("novoItem");
const lista = document.getElementById("lista");
const itens = 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 = item.quantidade
novoItem.appendChild(numeroItem)
novoItem.innerHTML += item.nome
lista.appendChild(novoItem)
}