Verify if the speechSynthesis API is available in the Browser.

The SpeechSynthesis interface is the scripted web API for controlling a text-to-speech output. This instruction allows you to check if the Speech Synthesis API is available in the Browser.

if(artyom.speechSupported()){
  // Use artyom.say("Text");
}else{
  // Unsupported :/
}