WebURLURL.passwordproperty URL.passwordThe password property of the URL interface is a string that represents the password specified in the URL. Examples ##Example 1 const myURL = new URL('https://someone:somepassword@example.org/baz'); console.log(myURL.password); // Logs "somepassword" Type #stringSee #https://developer.mozilla.org/docs/Web/API/URL/password
property URL.passwordThe password property of the URL interface is a string that represents the password specified in the URL. Examples ##Example 1 const myURL = new URL('https://someone:somepassword@example.org/baz'); console.log(myURL.password); // Logs "somepassword" Type #stringSee #https://developer.mozilla.org/docs/Web/API/URL/password