--- title: URL.port slug: Web/API/URL/port tags: - API - Property - Reference - URL - URL API translation_of: Web/API/URL/port ---
{{domxref("URL")}} 인터페이스의 port
속성은 URL의 포트 숫자를 담은 {{domxref("USVString")}}입니다. URL이 명시적인 포트 번호를 포함하고 있지 않으면 빈 문자열(''
)입니다.
{{AvailableInWorkers}}
const portNumber = url.port url.port = newPortNumber
A {{domxref("USVString")}}.
const url = new URL('
');
console.log(url.port); // Logs '80'
Specification | Status | Comment |
---|---|---|
{{SpecName('URL', '#dom-url-port', 'URL.port')}} | {{Spec2('URL')}} | Initial definition. |
{{Compat("api.URL.port")}}