let child = document.querySelector('.child');
let parent = child.closest('.parrent');
console.log(parent);
// By Class (.)
var closestNextClass = document.getElementsByClassName('div-id-goes-here').closest(".div-class-here");
// By ID (#)
var closestNextId = document.getElementById('div-id-goes-here').closest("#div-class-here");