parentNode.removeChild(childNode)
// 부모 요소와 자식 요소를 가져옵니다.
const parent = document.getElementById("parent");
const child = document.getElementById("child");

// 자식 요소를 부모 요소에서 제거합니다.
parentElement.removeChild(child);
const removedElement = parent.removeChild(child);
console.log(removedElement);  // 제거된 노드가 출력됩니다.
<div id="parent">
    <div id="child"></div>
</div>
// 부모 요소와 자식 요소를 가져옵니다.
const parent = document.getElementById("parent");
const child = document.getElementById("child");

// 자식 요소를 부모 요소에서 제거합니다.
parent.removeChild(child);
// 자식 요소를 가져옵니다.
const child = document.getElementById("child");

// 부모 요소를 찾습니다.
const parent = childElement.parentElement;

// 자식 요소를 부모 요소에서 제거합니다.
if (parent) { // 부모 요소가 존재하는지 체크합니다.
    parent.removeChild(child);
}
// 모든 자식 요소를 제거할 특정 부모 요소를 가져옵니다.
const parent = document.getElementById("parent");

while (parent.firstElementChild) { // 부모 요소에 첫 번째 자식 요소가 있는 동안 반복합니다.
  parent.removeChild(parent.firstElementChild); // 첫 번째 자식 요소를 제거합니다.
}