我想要一个带有声明短语的数组,但是需要找到一种方法,使responseObject使用toLowercase()查找消息并包括
if(responseObject[message.content]) {
message.reply(responseObject[message.content]);
}
声明的值为
const responseObject = {
"AMD": "AMD has no value.",
"no balls": "what?",
"took profit": "good boy"
}
答案 0 :(得分:0)
如果您希望它不再区分大小写,请执行以下操作:
if(responseObject[message.content.toLowerCase()]) {
message.reply(responseObject[message.content.toLowerCase()]);
}