- Source:
Members
length :number
A positive integer representing the number of values in the collection.
Type:
- number
- Source:
Minimal definition of an iterable collection. Must define a number length property representing the number
of elements in the collection, and be indexible by integers (0...length - 1) with each index representing a value
in the collection. E.g. both Array and NodeList implement this interface.
A positive integer representing the number of values in the collection.