This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.SpeechRecognition = window.webkitSpeechRecognition || window.SpeechRecognition; | |
const synth = window.speechSynthesis; | |
const recognition = new SpeechRecognition(); | |
const icon = document.querySelector('i.fa.fa-microphone') | |
let paragraph = document.createElement('p'); | |
let container = document.querySelector('.text-box'); | |
container.appendChild(paragraph); | |
const sound = document.querySelector('.sound'); |