NamedNodeMap.length

lengthNamedNodeMap インターフェイスの読み取り専用プロパティで、このマップに格納されているオブジェクトの数を示します。

このマップにあるオブジェクトの数を示す数値です。

html
<pre zero="test" one="test" two="test"></pre>
js
const pre = document.getElementsByTagName("pre")[0];
const attrMap = pre.attributes;

let result = `The 'test' attribute contains ${attrMap.length} attributes.\n`;

pre.textContent = result;

仕様書

Specification
DOM Standard
# dom-namednodemap-length

ブラウザーの互換性

BCD tables only load in the browser