ABOUT ME
I am 28 years old, married, have a driver’s license and two children, studying English..

I am 28 years old, married, have a driver’s license and two children, studying English..
Higher education, Pedagogical
const handleScroll = () => {
if (document.body.scrollTop > 200 || document.documentElement.scrollTop > 200) {
scrollToTopButton.style.display = "block";
}
else {
scrollToTopButton.style.display = "none";
}
};