Почему не сработало 
const imgArticle = document.querySelector(".img_article");
function onScroll() {
  let posTop = imgArticle.getBoundingClientRect().top;
  
  if(posTop = 0) {
	  imgArticle.style.display = "fixed";
  }
}
document.addEventListener("scroll", onScroll);
console.log(imgArticle.getBoundingClientRect().top);
У меня есть блок который достигает вверх страницы и должен зафиксироваться