js redirect to relative url without back code example
Example 1: js window location relative path
//To get just the relative path of a window location.
const RELATIVE_PATH = window.location.pathname;
Example 2: change windlow location relitave to current one
//Only line of code:
window.location.href = '../'; //one level up