Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The
URLUtilsReadOnly
.toString()
stringifier method returns a DOMString
containing the whole URL. It is a
synonym for URLUtilsReadOnly.href
.
Syntax
string = object.toString();
Examples
// In a Web worker, on the page https://developer.mozilla.org/en-US/URLUtilsReadOnly.href
var result = window.self.toString(); // Returns:'https://developer.mozilla.org/en-US/URLUtilsReadOnly.href'
Browser compatibility
BCD tables only load in the browser
See also
- The
URLUtilsReadOnly
interface it belongs to.