The url.href is an inbuilt application programming interface of class URL with in the url module which Gets and sets the serialized URL. Getting the value of the href property is equivalent to calling the url.toString() method.Setting the value of this property to a new value is equivalent to creating a new URL object using new URL(value). Each of the URL object’s properties will be modified.
Syntax:
const url.href
Return value: It gets and sets the serialized URL.
Below programs illustrate the use of url.href Method:
Example 1:
javascript
const http = require( 'url' );
console.log( "Before Change" );
console.log(myURL.href);
console.log();
console.log( "After Change" );
console.log(myURL.href);
|
Output:

Example 2:
javascript
const http = require( 'url' );
const href = myURL.href;
console.log(href);
|
Output:

Reference:
https://nodejs.org/api/url.html#url_url_href
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