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.

Syntax

const portNumber = url.port
url.port = newPortNumber

Value

A USVString.

Examples

const url = new URL('https://mydomain.com:80/svn/Repos/');
console.log(url.port); // Logs '80'

Specifications

Specification Status Comment
URL
The definition of 'URL.port' in that specification.
Living Standard Initial definition.

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
portChrome Full support YesEdge Full support 13Firefox Full support 22IE No support NoOpera Full support YesSafari Full support 10WebView Android Full support YesChrome Android Full support YesFirefox Android Full support 22Opera Android Full support YesSafari iOS Full support YesSamsung Internet Android Full support Yes

Legend

Full support
Full support
No support
No support

See also

  • The URL interface it belongs to.