get

JS
1.1
operator fun HTMLAllCollection.get(index: Int): Element?
operator fun HTMLAllCollection.get(
    name: String
): UnionElementOrHTMLCollection?
operator fun DOMStringMap.get(name: String): String?
operator fun AudioTrackList.get(index: Int): AudioTrack?
operator fun VideoTrackList.get(index: Int): VideoTrack?
operator fun TextTrackList.get(index: Int): TextTrack?
operator fun TextTrackCueList.get(index: Int): TextTrackCue?
operator fun HTMLFormElement.get(index: Int): Element?
operator fun HTMLFormElement.get(
    name: String
): UnionElementOrRadioNodeList?
operator fun HTMLSelectElement.get(index: Int): Element?
operator fun DataTransferItemList.get(
    index: Int
): DataTransferItem?
operator fun Window.get(name: String): dynamic
operator fun PluginArray.get(index: Int): Plugin?
operator fun PluginArray.get(name: String): Plugin?
operator fun MimeTypeArray.get(index: Int): MimeType?
operator fun MimeTypeArray.get(name: String): MimeType?
operator fun Plugin.get(index: Int): MimeType?
operator fun Plugin.get(name: String): MimeType?
operator fun Storage.get(key: String): String?
operator fun NodeList.get(index: Int): Node?
operator fun HTMLCollection.get(index: Int): Element?
operator fun HTMLCollection.get(name: String): Element?
operator fun Document.get(name: String): dynamic
operator fun NamedNodeMap.get(index: Int): Attr?
operator fun NamedNodeMap.get(qualifiedName: String): Attr?
operator fun DOMTokenList.get(index: Int): String?
operator fun DOMRectList.get(index: Int): DOMRect?
operator fun TouchList.get(index: Int): Touch?