Skip to content

DOMStringList

Types

t

type t = DOM.domStringList

Record fields

length
int

Returns the number of strings in strings. Read more on MDN

Values

contains

Returns true if strings contains string, and false otherwise. Read more on MDN

let contains: (t, string) => bool

Parameters

t string

Return type

bool

item

Returns the string with index index from strings. Read more on MDN

let item: (t, int) => string

Parameters

t int

Return type

string