The href property of the HTMLBaseElement interface contains a string that is the URL to use as the base for relative URLs.
It reflects the href attribute of the <base> element.
A string that contains a URL, or the empty string ("") if the corresponding <base> element does not include the href attribute.
This example demonstrates that the href attribute in <base> is reflected in the href property of HTMLBaseElement.
<base href="https://developer.mozilla.org/example" />const base = document.getElementsByTagName("base")[0];
log(`base.href="${base.href}"`);