LoquendoBot/src/js/responses.js
2023-08-04 01:09:06 +02:00

18 lines
377 B
JavaScript

function getBotResponse(input) {
// rock paper scissors
if (input === 'rock') {
return 'paper';
} if (input === 'paper') {
return 'scissors';
} if (input === 'scissors') {
return 'rock';
}
// Simple responses
if (input === 'hello') {
return 'Hello there!';
} if (input === 'goodbye') {
return 'Talk to you later!';
}
return 'Try asking something else!';
}