--- title: URL.username slug: Web/API/URL/username tags: - API - Property - Reference - URL - URL API translation_of: Web/API/URL/username ---
{{domxref("URL")}} 인터페이스의 username
속성은 도메인 이전의 사용자 이름을 담은 {{domxref("USVString")}}을 반환합니다.
{{AvailableInWorkers}}
const usernameString = url.username url.username = newUsername
{{domxref("USVString")}}.
const url = new URL('https://anonymous:flabada@developer.mozilla.org/en-US/docs/Web/API/URL/username'); console.log(url.username) // Logs "anonymous"
Specification | Status | Comment |
---|---|---|
{{SpecName('URL', '#dom-url-username', 'username')}} | {{Spec2('URL')}} | Initial definition. |
{{Compat("api.URL.username")}}