reloading a page with a button in js code example
Example 1: how to reload the same page using javascript
BY LOVE
window.location.reload();
Example 2: javascript button onclick reload page
const reloadtButton = document.querySelector("#reload");
// Reload everything:
function reload() {
reload = location.reload();
}
// Event listeners for reload
reloadButton.addEventListener("click", reload, false);