--- title: URL.protocol slug: Web/API/URL/protocol tags: - API - Property - Reference - URL - URL API translation_of: Web/API/URL/protocol ---
{{domxref("URL")}} 인터페이스의 protocol
속성은 URL의 프로토콜 스킴과 마지막 ':'
을 포함한 {{domxref("USVString")}}입니다.
{{AvailableInWorkers}}
const protocol = url.protocol url.protocol = newProtocol
{{domxref("USVString")}}.
const url = new URL('https://developer.mozilla.org/en-US/docs/Web/API/URL/protocol'); console.log(url.protocol); // Logs "https:"
Specification | Status | Comment |
---|---|---|
{{SpecName('URL', '#dom-url-protocol', 'protocol')}} | {{Spec2('URL')}} | Initial definition. |
{{Compat("api.URL.protocol")}}