I am trying to use pageYOffset property but its shown as strikethrough and not doing the job. Any better alternative or solution this problem.
JavaScript code:
window.addEventListener("scroll", function({
if(this.pageYOffset > 60){
document.querySelector(".header").classList.add("sticky");
}
else {
document.querySelector(".header").classList.remove("sticky");
}
});