Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 2, 2019 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/96e1014fab545a87fe9df11cd90da78b to your computer and use it in GitHub Desktop.
Save parzibyte/96e1014fab545a87fe9df11cd90da78b to your computer and use it in GitHub Desktop.
let sr = new webkitSpeechRecognition();
sr.onresult = resultado => {
console.log(resultado);
}
sr.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment