URL: toJSON() method
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since December 2018.
Note: This feature is available in Web Workers.
The toJSON() method of the URL interface
returns a string containing a serialized version of the URL,
although in practice it seems to have the same effect as
URL.toString().
Syntax
js
toJSON()
Parameters
None.
Return value
A string.
Examples
js
const url = new url(/Education?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FURL%2F%2522https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FAPI%2FURL%2FtoString%2522%2C);
url.toJSON(); // should return the URL as a string
Specifications
| Specification |
|---|
| URL> # dom-url-tojson> |