web api interface
SpeechRecognitionResultList
The SpeechRecognitionResultList interface of the Web Speech API represents a list of SpeechRecognitionResult objects, or a single one if results are being captured in non-continuous mode.
Instance properties
lengthRead only- : Returns the length of the “array” — the number of
SpeechRecognitionResultobjects in the list.
- : Returns the length of the “array” — the number of
Instance methods
item- : A standard getter that allows
SpeechRecognitionResultobjects in the list to be accessed via array syntax.
- : A standard getter that allows
Examples
This code is excerpted from our Speech color changer example.
recognition.onresult = (event) => {
const color = event.results[0][0].transcript;
diagnostic.textContent = `Result received: ${color}.`;
bg.style.backgroundColor = color;
};
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.