--- title: URL.password slug: Web/API/URL/password tags: - API - Property - Reference - URL - URL API translation_of: Web/API/URL/password ---
{{domxref("URL")}} 인터페이스의 password
속성은 도메인 이름 이전의 비밀번호를 포함한 {{domxref("USVString")}}을 반환합니다.
{{domxref("URL.username", "username")}} 설정 전에 password
를 먼저 지정하려 시도하면 조용히 실패합니다.
{{AvailableInWorkers}}
const passwordString = url.password url.password = newPassword
{{domxref("USVString")}}.
const url = new URL('https://anonymous:flabada@developer.mozilla.org/en-US/docs/Web/API/URL/password'); console.log(url.password) // Logs "flabada"
Specification | Status | Comment |
---|---|---|
{{SpecName('URL', '#dom-url-password', 'URL.password')}} | {{Spec2('URL')}} | Initial definition. |
{{Compat("api.URL.password")}}