The URL.toString() stringifier method returns a string containing the whole URL. It is effectively a read-only version of URL.href. 
Note: This feature is available in Web Workers
 The URL.toString() stringifier method returns a string containing the whole URL. It is effectively a read-only version of URL.href. 
Note: This feature is available in Web Workers
js
toString()
None.
A string.
js
const url = new URL( "https://developer.mozilla.org/en-US/docs/Web/API/URL/toString", ); url.toString(); // should return the URL as a string
| Specification | 
|---|
| URL Standard  # URL-stringification-behavior  | 
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
toString | 
19 | 17 | 54 | No | 15 | 7 | 4.4 | 25 | 54 | 14 | 7 | 6.0 | 
URL interface it belongs to.
    © 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
    https://developer.mozilla.org/en-US/docs/Web/API/URL/toString