Interface HTMLCollectionBase

    interface HTMLCollectionBase {
        length: number;
        [iterator](): ArrayIterator<Element>;
        item(index: number): Element;
        [index: number]: Element;
    }
    Hierarchy

    Indexable

    Properties

    Methods

    Properties

    length: number

    Sets or retrieves the number of objects in a collection.

    MDN Reference

    Methods