The SpeechRecognitionResultList interface of the Web Speech API
a list of speech.SpeechRecognitionResult
objects, or a single
if results are being captured in web.continuous
mode.
The SpeechRecognitionResultList interface of the Web Speech API a list of `speech.SpeechRecognitionResult` objects, or a single if results are being captured in `web.continuous` mode.
(item this)
Method.
The item getter of the speech.SpeechRecognitionResultList
interface
a standard getter — it allows speech.SpeechRecognitionResult
in the list to be accessed via array syntax.
var myResult = speechRecognitionResultListInstance[0];
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList/item
Method. The item getter of the `speech.SpeechRecognitionResultList` interface a standard getter — it allows `speech.SpeechRecognitionResult` in the list to be accessed via array syntax. `var myResult = speechRecognitionResultListInstance[0];` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList/item`
(length this)
Property.
The length read-only property of the speech.SpeechRecognitionResultList
returns the length of the "array" — the number of speech.SpeechRecognitionResult
in the list.
var myLength = speechRecognitionResultListInstance.length;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList/length
Property. The length read-only property of the `speech.SpeechRecognitionResultList` returns the length of the \"array\" — the number of `speech.SpeechRecognitionResult` in the list. `var myLength = speechRecognitionResultListInstance.length;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList/length`
(set-length! this val)
Property.
The length read-only property of the speech.SpeechRecognitionResultList
returns the length of the "array" — the number of speech.SpeechRecognitionResult
in the list.
var myLength = speechRecognitionResultListInstance.length;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList/length
Property. The length read-only property of the `speech.SpeechRecognitionResultList` returns the length of the \"array\" — the number of `speech.SpeechRecognitionResult` in the list. `var myLength = speechRecognitionResultListInstance.length;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionResultList/length`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close