Interface RadioNodeList

interface RadioNodeList {
    length: number;
    value: string;
    forEach(callbackfn, thisArg?): void;
    item(index): Node;
}

Hierarchy (view full)

Properties

Methods

Properties

length: number

Returns the number of nodes in the collection.

MDN Reference

value: string

Methods

  • Performs the specified action for each node in an list.

    Parameters

    • callbackfn: Object

      A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.

    • Optional thisArg: any

      An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.

    Returns void

  • Returns the node with index index from the collection. The nodes are sorted in tree order.

    MDN Reference

    Parameters

    • index: number

    Returns Node