是否可以将 SpeechRecognitionResultList 转换为数组?它公开了一个项目获取器,您可以使用 for of 对其进行迭代,但我想转换为一个数组,以便可以使用 findIndex 等。
const speechRecognition = new window.webkitSpeechRecognition();
speechRecognition.onresult = (event: any) => {
// how to turn this into an array?
event.results
};