const childElement = document.getElementById("child");
const parentElement = childElement.parentElement;

console.log(parentElement); // 부모 요소 객체를 출력합니다.
node.parentElement
<div id="parent">
    <p id="child">이것은 자식 요소입니다.</p>
</div>
const childElement = document.getElementById("child");
const parentElement = childElement.parentElement;

console.log(parentElement); // <div id="parent">...</div>
<!DOCTYPE html>
<html>
    <head></head>
    <body>
        <script>
            const html = document.querySelector("html");
            console.log(html.parentElement); // null
        </script>
    </body>
</html>
<div style="background-color: silver; padding: 20px;">
    <button type="button">버튼 클릭</button>
</div>
const button = document.querySelector("button");

button.addEventListener("click", function() {
    const parent = this.parentElement; // 버튼의 부모 요소를 찾기
    parent.style.backgroundColor = "lightblue"
});
실제 적용된 모습 '버튼'을 실제로 클릭해 보세요!