js change url without reload code example

Example 1: js change url

window.location.href = "www.google.com";

Example 2: javascript change url without reload

window.history.pushState('', 'New Page Title', '/new-url.php');

Example 3: java script change url without reload

window.history.replaceState({}, '','/dashboard');

Example 4: javascript change url

history.pushState({}, null, newUrl);

Example 5: change url without reloading

function processAjaxData(response, urlPath){
     document.getElementById("content").innerHTML = response.html;
     document.title = response.pageTitle;
     window.history.pushState({"html":response.html,"pageTitle":response.pageTitle},"", urlPath);
 }

Example 6: without refresh update url in js

history.pushState(state, title, url)