JavaScript Uzyskaj najbliższy element według klasy

let child = document.querySelector('.child');
let parent = child.closest('.parrent');
console.log(parent);
Filthy Flatworm