var elem = document.querySelector('#some-element');
elem.parentNode.removeChild(elem);
const labelEmail = document.getElementById('label-email');
labelEmail.remove();
const node = document.getElementById("node");
node.parentNode.removeChild(node);
// Get the element you want to remove
var element = document.getElementById(elementId);
// Get the parent and remove the element since it is a child of the parent
element.parentNode.removeChild(element);
node.remove();
// select the target element
const e = document.querySelector("li:last-child");
// remove the list item
e.parentElement.removeChild(e);
Code language: JavaScript (javascript)
var filhoRemovido = elemento.removeChild(filho);
elemento.removeChild(filho);