© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
thilina dilshan
Software developer
const speak = (msg) => { const sp = new SpeechSynthesisUtterance(msg); [sp.voice] = speechSynthesis.getVoices(); speechSynthesis.speak(sp); }; speak("Hellow world");
No responses yet.