Как получить конкретный индекс с помощью Math.Floor? - PullRequest
0 голосов
/ 21 июня 2019

Я создал const с именем hru и вставил в него 3 строки, а затем добавил оператор if, который в данный момент содержит Math.Пол случайный, поэтому, если я нажму кнопку разговора и скажу, что у меня все хорошо, то компьютер вернет одну из 3 строк, которые я вставил в const, но я этого не хочу.Я хочу, чтобы компьютер возвратил первую строку, которую я поместил в const hru, как мне это сделать?Пожалуйста, сначала прочтите код.

const btn = document.querySelector('.talk');
const content = document.querySelector('.content');
const greetings = [
				'If you are good im good too.', 
				'Im doin alright', 
				'doing well.'
];
const weather = [
				'Ask the weatherman!', 
				'I recommend checking your phone or the news ' 
				
];
const name = [
	'My name is techwaala', 
	'its techwaala, because I love to code!'
];
const hello = [
	'Why hello! How are you doing today?', 
	'Hey there How are you?'
];
const hru = [
	'thats great!', 
	'Im so sorry to hear that', 
	'Feel better soon!'
];
const SpeechRecognition = 
	window.SpeechRecognition || window.webkitSpeechRecognition;
const recognition = new SpeechRecognition();

recognition.onstart = function() {
	console.log('voice is activated speak into the mic');
};
recognition.onresult = function(event) {
	const current = event.resultIndex;
	
	const transcript = event.results[current][0].transcript;
	content.textContent = transcript;
	readOutLoud(transcript);
}

btn.addEventListener('click', () => {
	recognition.start();
});

function readOutLoud(message) {
	
	const speech = new SpeechSynthesisUtterance();
	speech.text = 'I dont know what you said';
	if(message.includes('how are you')) {
		 const finalText = 
		 greetings[Math.floor(Math.random() * greetings.length)];
		 speech.text = finalText;
		
	} 
	if(['hey', 'hi', 'hello', 'hi there', 'hey there', 'hi techwala', 'hey techwala','hello techwala']
	.some(word => message.includes(word))) {
    const finalText = hello[Math.floor(Math.random() * hello.length)];
    speech.text = finalText;
	
}
	if(['whats your name', 'your name']
	.some(word => message.includes(word))) {
    const finalText = name[Math.floor(Math.random() * name.length)];
    speech.text = finalText;
}
if(['how\'s the weather', 'what\'s the weather like', 'is it sunny', 'is it raining', 'is it cloudy', 'is it snowing']
	.some(word => message.includes(word))) {
    const finalText = weather[Math.floor(Math.random() * weather.length)];
    speech.text = finalText;
}
	if(['I/m doing good', 'doing good']
	.some(word => message.includes(word))) {
    const finalText = hru[Math.floor(Math.random() * hru.length)];
    speech.text = finalText;
}
	speech.volume = 1;
	speech.rate = 1;
	speech.pitch = 1;
	window.speechSynthesis.speak(speech);
		
	} 
<!DOCTYPE html>
<html>
<head>
	<title>Page Title</title>
	
</head>
<body>
<button class="talk">Talk</button>
<h3 class="content"></h3>
</body>
</html>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...