Computer speak JS

September 21, 2017

Make the browser speak again

let synth = window.speechSynthesis;
let utterThis = new SpeechSynthesisUtterance('Hello jojo');
synth.speak(utterThis);