Open In App

Web API URL.username Property

Last Updated : 27 Nov, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report

The Web API URL.username property returns a USVString containing the username specified before the domain name of the URL

Syntax:

var str = URL.username

Return Value: This property returns a USVString containing the username specified before the domain name of the URL.

Example 1:

HTML
<!DOCTYPE html>
<html>

<body>
    <h1>GeeksforGeeks</h1>

    <button onclick="get()">
        Click on Me!
    </button>

    <script type="text/javascript">
        function get() {
            var url = new URL(
'https://username:[email protected]/href');

            console.log("username of current URL is :", 
                url.username);
        }
    </script>
</body>

</html>

Output:

Example 2:

HTML
<!DOCTYPE html>
<html>

<body>
    <h1>GeeksforGeeks</h1>

    <div id="abc"></div>

    <br><br>
    <button onclick="get()">
        Click on Me!
    </button>

    <script type="text/javascript">
        function get() {
            var url = new URL(
'https://username:[email protected]/href');

            a = document.getElementById("abc");

            a.innerHTML = "username of current URL is : "
                + url.username;
        }
    </script>
</body>

</html>

Output:

Supported Browsers:

  • Safari
  • Opera
  • Chrome
  • Edge
  • Firefox

Next Article

Similar Reads