how to program discod.js bot to see if a specific word is in a sentece code example
Example: discord.js find word inside comment
var words = ["insert", "your", "words"]
for (var i=0; i < words.length; i++) {
if (message.content.includes(words[i])) {
// YOUR CODE
}
}