Document: links プロパティ

linksDocument インターフェイスの読み取り専用プロパティで、文書中のすべての <area> 要素および <a> 要素のうち、href 属性の値があるものの集合を返します。

HTMLCollection です。

js
for (const link of document.links) {
  const linkHref = document.createTextNode(link.href);
  const lineBreak = document.createElement("br");
  document.body.appendChild(linkHref);
  document.body.appendChild(lineBreak);
}

仕様書

Specification
HTML Standard
# dom-document-links-dev

ブラウザーの互換性

BCD tables only load in the browser