Fullpage JS - Not Going back to top page after refresh

I am using a fullpage.js in my website, so i have 4 sections in 1 single page, for example, you are in fourth/last section then you refresh the page it will auto scroll from the top back to your previous section, I want it to start again on top, wherever you are when reload the page, what should i do?

here’s the links
Preview Link

Output Link

Try this:

window.onbeforeunload = function () {
  window.scrollTo(0, 0);
}