Seria errado ao invés de usar this.remove()
var amtPacient = document.querySelectorAll(".paciente");
amtPacient.forEach(function(pacient){
pacient.addEventListener("dblclick", function(){
this.remove();
});
});
Usar o innerHTML = "";
var amtPacient = document.querySelectorAll(".paciente");
amtPacient.forEach(function(pacient){
pacient.addEventListener("dblclick", function(){
this.innerHTML = "";
});
});
Há alguma diferença/problema? Qual é o mais recomendado?