js window.location.pathname code example
Example 1: javascript get current url
var currentUrl = window.location.href;
Example 2: how to use location.pathname
// Let's an <a id="myAnchor" href="https://developer.mozilla.org/en-US/docs/Location.pathname"> element be in the document
var anchor = document.getElementById("myAnchor");
var result = anchor.pathname; // Returns:'/en-US/docs/Location.pathname'