Ok so I have few elements in my app, in this case I just made 3 divs, for the purpose of example. I have array with 3 divs, and my goal is to use forEach method on them and find div that is closest to the top screen of viewport. I used getBoundingClientRect() for this. It returns the value for each div. My question is just, how do I return the closest one to top, which means the one with number closest to 0. In my app of course it's more complicated but it's the same case.
const myDivs = document.getElementsByClassName('test')
const myDivsArr = Array.prototype.slice.call(myDivs);
myDivsArr.forEach(div => (
console.log(div.getBoundingClientRect().top)
))
<div class="test">
1
</div>
<div class="test">
2
</div>
<div class="test">
3
</div>
See comments inline.