Skip to main content

DOMRectList

The DOMRectList interface represents a collection of DOMRect objects, typically used to hold the rectangles associated with a particular element, like bounding boxes returned by methods such as getClientRects(). It provides access to each rectangle in the list via its index, along with a length property that indicates the total number of rectangles in the list.

MDN Reference

Indexable

[index: number]: DOMRect

Methods

[iterator]()

iterator: ArrayIterator<DOMRect>;

Returns

ArrayIterator<DOMRect>


item()

item(index): DOMRect | null;

The DOMRectList method item() returns the DOMRect at the specified index within the list, or null if the index is out of range.

MDN Reference

Parameters

ParameterType
indexnumber

Returns

DOMRect | null

Properties

length

readonly length: number;

The read-only length property of the DOMRectList interface returns the number of DOMRect objects in the list.

MDN Reference