SpeechRecognitionResultList: item() method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Theitem getter of theSpeechRecognitionResultList interface is a standard getter — it allowsSpeechRecognitionResult objects in the list to be accessed via arraysyntax.
In this article
Syntax
js
item(index)Parameters
indexIndex of the item to retrieve.
Return value
ASpeechRecognitionResult object.
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> # dom-speechrecognitionresultlist-item> |