js redirect to relative url

JavaScript
window.location.href = "http://mywebsite.com/home.html";window.location.href = '/path'; //relative to domain//To get just the relative path of a window location.

const RELATIVE_PATH = window.location.pathname; 
Source

Also in JavaScript: