const labelEmail = document.getElementById('label-email');
labelEmail.remove();
// delete an element from the dom
var elem = document.querySelector('#some-element');
elem.parentNode.removeChild(elem);
// keep element in dom
var elem = document.querySelector('#some-element');
elem.style.display = 'none';
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);
/*The JavaScript delete operator removes a property from an object;
*/
const Employee = {
firstname: 'John',
lastname: 'Doe'
};
console.log(Employee.firstname);
// expected output: "John"
delete Employee.firstname;
console.log(Employee.firstname);
// expected output: undefined
element.parentNode.removeChild(element);
var filhoRemovido = elemento.removeChild(filho);
elemento.removeChild(filho);
const set = new Set([1, 2, 3]);
console.log(set.values()); // Set Iterator [1, 2, 3]
// removing a particular element
set.delete(2);
console.log(set.values()); // Set Iterator [1, 3]