mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2026-01-13 22:42:02 +01:00
- Update some sheets which have very long sections - Remove `layout: 2017/sheet` (everything has the same layout now) - Remove outdated sheets
488 B
488 B
title, category, weight
| title | category | weight |
|---|---|---|
| JavaScript speech synthesis | JavaScript | -1 |
SpeechSynthesisUtterance
{: .-one-column}
function speak (message) {
var msg = new SpeechSynthesisUtterance(message)
var voices = window.speechSynthesis.getVoices()
msg.voice = voices[0]
window.speechSynthesis.speak(msg)
}
speak('Hello, world')
See: SpeechSynthesisUtterance (developer.mozilla.org)