Ao realizar a operação, igual em aula, aparece no meu console o seguinte erro:
listagem-clientes.js:16 Uncaught (in promise)
TypeError: exibe.forEach is not a function
at listagem-clientes.js:16
Utilizei o código em aula, como arrumar?
const exibeCliente = (cpf, nome) => {
const linha = document.createElement("tr");
const conteudoLinha = `
<td>${cpf}</td>
<td>${nome}</td>
`;
linha.innerHTML = conteudoLinha;
return linha;
};
const corpoTabela = document.querySelector("[data-conteudo-tabela]");
listarclientes().then (exibe => {
exibe.forEach( indice => {
corpoTabela.appendChild(exibeCliente(indice.cpf, indice.nome))
})
})