JSFiddle - React, Tailwind, and code Playground

by graphettion

JavaScript

var hal = window.speechSynthesis
setTimeout(function() {
  var phrase = new SpeechSynthesisUtterance('I just want to fuck you. No kissin\' and huggin\' girl you gotta husband dat loves you. You gotta give him you\'re quality time.')
  phrase.voice = hal.getVoices[0]
  phrase.pitch = .7
  phrase.rate = .7
  hal.speak(phrase)
})