Получите родительский узел от детского узла

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