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:
javascript
Output:
javascript
Output:
url.toString()Parameters: This method accepts single parameter as mentioned above and described below:
- url: It is an object created by URL constructor.
// Creating an URL object with URL constructor.
const url = new URL("https://www.geeksforgeeks.org/");
// Using toString() method
console.log(url.toString());
https://www.geeksforgeeks.org/Example 2:
// Creating an URL object with URL constructor.
const url = new URL("https://www.google.com/?foo=bar");
// Using toString() method
console.log(url.toString());
https://www.google.com/?foo=barReference: https://nodejs.org/api/url.html#url_url_tostring