1// Let's an <a id="myAnchor" href="https://developer.mozilla.org/en-US/docs/Location.pathname"> element be in the document
2var anchor = document.getElementById("myAnchor");
3var result = anchor.pathname; // Returns:'/en-US/docs/Location.pathname'
4