NodeList

abstract external class NodeList : ItemArrayLike<Node>

Exposes the JavaScript NodeList to Kotlin

Constructors

Link copied to clipboard
fun NodeList()

Functions

Link copied to clipboard
open override fun item(index: Int): Node?

Properties

Link copied to clipboard
abstract val length: Int

Inheritors

Link copied to clipboard

Extensions

Link copied to clipboard

Returns the view of this ItemArrayLike<T> collection as List<T>

Link copied to clipboard
inline operator fun NodeList.get(index: Int): Node?