Firefox Tomorrow

web api instance property

NamedNodeMap: length property

View on MDN ↗

The read-only length property of the NamedNodeMap interface is the number of objects stored in the map.

Value

A number containing the number of objects in the map

Example

<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`;
Interactive exampleOpen the canonical MDN source to run this embedded demo.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.