How to reload page using javascript?

Many times i need to reload page in my website.
please help me get it done.

Google for it, there are lots of tutorials. And if you don’t understand something specific, don’t hesitate to ask.

there are so many types of reloads like rload on click , reload on page, reload on timeouts, which one are you looking??

Any of those :

window.location.reload();
history.go(0);
window.location.href=window.location.href;

If you want to force a reload from the server then use location.reload(true);