1function removeElement(el) {
2 el.parentNode.removeChild(el);
3}
4
5// or
6HTMLElement.prototype.remove = function() { this.parentNode.removeChild(this); return this; }
1parentElemnet.appendChild(childElemnet);
2childElemnet.appendChild(buttonRemoveElement)
3buttonRemoveElement.onclick = () => {perentElement.remove(childElement)}