The url.host is an inbuilt application programming interface of class URL with in url module which is used to get and set the host portion of the URL.
Syntax:
const url.host
Return value: It gets and sets the host portion of the URL.
Below programs illustrates the use of url.host Method:
Example 1:
javascript
const http = require( 'url' );
console.log( "Before Change" );
console.log(myURL.href);
console.log();
myURL.host = 'example.com:82' ;
console.log( "After Change" );
console.log(myURL.href);
|
Output:
Before Change
https://example.com:80/foo#ram
After Change
https://example.com:82/foo#ram
Example 2:
javascript
const http = require( 'url' );
const host = myURL.host;
console.log(host);
|
Output:
example.org:82
NOTE: The above program will compile and run by using the node myapp.js command .
Reference:
https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_host
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
14 Oct, 2021
Like Article
Save Article