ele
element except its children:// Get the parent nodeconst parent = ele.parentNode;// Move all children node to the parentwhile (ele.firstChild) {parent.insertBefore(ele.firstChild, ele);}// `ele` becomes an empty element// Remove it from the parentparent.removeChild(ele);