URL.port
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/es/web/api/url_api/index.md)
La propiedad port
de la interfaz URL
es un USVString
que contiene el número de puerto de la URL. Si la URL no contiene un número de puerto explícito, se establecerá ''
.
Nota: Esta característica está disponible en Web Workers.
Sintaxis
string = object.port; object.port = string;
Valor
Un USVString
.
Ejemplos
js
var url = new URL("https://mydomain.com:80/svn/Repos/");
var result = url.port; // Devuelve:'80'
Especificaciones
Specification |
---|
URL Standard # dom-url-port |
Compatibilidad con navegadores
BCD tables only load in the browser
Ver también
- La interfaz
URL
a la que pertenece.