VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-url-tostring-method/

⇱ Node url.toString() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node url.toString() Method

Last Updated : 15 Jul, 2025
The url.toString() method is an inbuilt application programming interface(API) of the URL module within the Node.JS. The url.toString() method is used to return the serialized URL. The returned value is equivalent to that of url.href and url.toJSON(). Syntax:
url.toString()
Parameters: This method accepts single parameter as mentioned above and described below:
  • url: It is an object created by URL constructor.
Example 1: Output:
https://www.geeksforgeeks.org/
Example 2: Output:
https://www.google.com/?foo=bar
Reference: https://nodejs.org/api/url.html#url_url_tostring
Comment
Article Tags:

Explore