URL.port
The port property of the URL interface is
a USVString containing the port number of the URL. If the URL does not
contain an explicit port number, it will be set to ''.
Note: This feature is available in Web Workers
Value
A USVString.
Examples
const url = new URL('https://mydomain.com:80/svn/Repos/');
console.log(url.port); // Logs '80'
Specifications
| Specification |
|---|
| URL Standard # dom-url-port |
Browser compatibility
BCD tables only load in the browser
See also
- The
URLinterface it belongs to.