RosettaCodeData/Task/Speech-synthesis/JavaScript/speech-synthesis-1.js

3 lines
130 B
JavaScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var utterance = new SpeechSynthesisUtterance("This is an example of speech synthesis.");
window.speechSynthesis.speak(utterance);