Dapatkan simpul induk dari node anak

const myChildNode = document.querySelector("#childNodeId");
const parent = myChildNode.parentNode;
Spen