Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created March 26, 2021 14:59
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 ssaurel/1e0b991204b7eca7b7749d17bb4f9572 to your computer and use it in GitHub Desktop.
Save ssaurel/1e0b991204b7eca7b7749d17bb4f9572 to your computer and use it in GitHub Desktop.
sayBitcoinPrice for Bitcoin Price in Words
function sayBitcoinPrice() {
if (textToSpeech) {
const utterance = new SpeechSynthesisUtterance(textToSpeech);
utterance.lang = 'en-US';
speechSynthesis.speak(utterance);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment