js redirect to path code example
Example 1: js redirect to relative url
window.location.href = '/path'; //relative to domain
Example 2: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 3: javascript redirect to url
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");
// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
Example 4: js window location relative path
//To get just the relative path of a window location.
const RELATIVE_PATH = window.location.pathname;