Speech Synthesis

Convert text to speech

JavaScriptBeginner
JavaScript
const utterance = new SpeechSynthesisUtterance('Hello World');
speechSynthesis.speak(utterance);

Output

// Speaks "Hello World"

Speech Synthesis converts text to speech.