VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-url-href-api/

⇱ Node.js URL.href API - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js URL.href API

Last Updated : 14 Oct, 2021

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:  

Output
 

👁 Image


Example 2: 

Output: 
 

👁 Image

Reference: 
https://nodejs.org/api/url.html#url_url_href

Comment
Article Tags:

Explore