1window.location.pathname; // Returns path only (/path/example.html)
2window.location.href; // Returns full URL (https://example.com/path/example.html)
3window.location.origin; // Returns base URL (https://example.com)
1console.log(window.location.href);
2
3As noted in the comments, the line below works, but it is bugged for Firefox.
4document.URL