Firefox Tomorrow

web api instance method

SpeechRecognitionResult: item() method

View on MDN ↗

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

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.

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.

See also