SpeechRecognitionResultList
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
TheSpeechRecognitionResultList interface of theWeb Speech API represents a list ofSpeechRecognitionResult objects, or a single one if results are being captured innon-continuous mode.
In this article
Instance properties
SpeechRecognitionResultList.lengthRead onlyReturns the length of the "array" — the number of
SpeechRecognitionResultobjects in the list.
Instance methods
SpeechRecognitionResultList.itemA standard getter that allows
SpeechRecognitionResultobjects in the list to be accessed via array syntax.
Examples
This code is excerpted from ourSpeech color changer example.
js
recognition.onresult = (event) => { const color = event.results[0][0].transcript; diagnostic.textContent = `Result received: ${color}.`; bg.style.backgroundColor = color;};Specifications
| Specification |
|---|
| Web Speech API> # speechreco-resultlist> |