window.location.href // Returns full path, with domain name
window.location.origin // returns window domain url Ex : "https://stackoverflow.com"
window.location.pathname // returns relative path, without domain name
使用react-router
this.props.location.pathname // returns relative path, without domain name
使用react Hook
const location = useLocation(); // React Hook
console.log(location.pathname); // returns relative path, without domain name