if (elementoClicado.dataset.type == 'remocao'){
let livroId = elementoClicado.dataset.ref;
console.log('Livro ID para remover = ' + livroId);
fetch('http://localhost:3000/livros/'+ livroId, {method: 'DELETE'})
.then(resposta => {
let tr = elementoClicado.closest('#livro_' + livroId);
tr.remove();
})
.catch(erro => console.log(erro));
Erro no console: remove-livros.js:9 DELETE http://localhost:3000/livros/5 404 (Not Found) (anonymous) @ remove-livros.js:9