how to refresh a page in javascript code example

Example 1: refresh window js

window.location.reload();

Example 2: how to reload the same page using javascript

BY LOVE
window.location.reload();

Example 3: javascript reload page

location.reload();

Example 4: refresh page js

//with no cache
document.location.reload(true);

//else

document.location.reload();

Example 5: refresh javascript

location.reload();
Works like refresh button.

Example 6: how to refresh a page in javascript

document.querySelector(".again").addEventListener("click", function (){
  location.reload();
})