<html>
<body>
<p><a id="myAnchor" href="https://johnsmith:smith123@www.example.com">Example link</a></p>
<p>Click the button to display the password part of the link above.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
let x = document.getElementById("myAnchor").password;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>