SpeechRecognitionResult: item() method

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

The item getter of the SpeechRecognitionResult interface is a standard getter that allows SpeechRecognitionAlternative objects within the result to be accessed via array syntax.

Syntax

js
item(index)

Parameters

index

Index of the item to retrieve.

Return value

A SpeechRecognitionAlternative object.

Examples

This code is excerpted from our Speech 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-speechrecognitionresult-item

Browser compatibility

See also