Speech Synth
var synth = window .speechSynthesis; var msg = new SpeechSynthesisUtterance(); var theText; function startTalking() { theText=document.getElementById("theText").volume; msg.volume=1; msg.pitch=1; msg.text= "This is a test"; } synth.speak(msg);