Get hostname from URL in javascript

Created at 29-Sep-2021 , By samar

Get hostname from URL in javascript

We will use programming in this lesson to attempt to solve the "Get hostname from URL in javascript".

You can get hostname from URL in javascript. Sometimes you have to get the hostname from a specific URL. In that case this code snippet will help you to get the hostname from the url
  • Get hostname from URL in javascript using URL() constructor

    <script>
    const url = new URL('https://w3codegenerator.com/queries/javascript');
    console.log(url.hostname); 
    </script>
    

    Output:

    w3codegenerator.com

    You can get the hostname from any URL in javascript using URL constructor which returns the URL object. You can pass dynamic value instead of static value (https://w3codegenerator.com/queries/javascript) to URL() constructor.

  • Get hostname from current URL in javascript using location object

    <script> 
    const hostname = window.location.hostname;
    console.log(hostname); 
    </script>
    

    Output:

    w3codegenerator.com

    You can get the hostname from the current url in javascript using location object. 

Back to code snippet queries related javascript

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.