The read-only length property of the NamedNodeMap interface is the number of objects stored in the map.
A number containing the number of objects in the map
<pre class="foo" id="bar" contenteditable></pre>const pre = document.querySelector("pre");
const attrMap = pre.attributes;
pre.textContent = `The 'test' attribute contains ${attrMap.length} attributes.\n`;