Docs

URL.prototype.password

The password component of the URL.

Example

let url = new URL("https://user:[email protected]")
url.password
"pass"
let url = new URL("https://example.com")
url.password
""
let url = new URL("https://[email protected]")
url.password = "secret"
url.href
"https://user:[email protected]/"