Interface DOMStringList
interface DOMStringList {
length: number;
[iterator](): ArrayIterator<string>;
contains(string: string): boolean;
item(index: number): string;
[index: number]: string;
}
length: number;
[iterator](): ArrayIterator<string>;
contains(string: string): boolean;
item(index: number): string;
[index: number]: string;
}
Indexable
- [index: number]: string
Index
Properties
Methods
Methods
[iterator]
- [iterator](): ArrayIterator<string>
Returns ArrayIterator<string>
Returns the number of strings in strings.
MDN Reference