Skip to content

Instantly share code, notes, and snippets.

View uncledevhq's full-sized avatar
🇿🇲
Focusing

Chomba uncledevhq

🇿🇲
Focusing
View GitHub Profile
// Paste in your browser console
const kamba = vokamba => {
const sp = new SpeechSynthesisUtterance(vokamba);
[sp.voice] = speechSynthesis.getVoices();
speechSynthesis.speak(sp);
};
kamba('My name is chomba chanda, an intern at bongohive');