标签: javascript discord
我想使Discord bot不区分大小写,并且还要搜索特定的单词
我尝试过message.tolowercase并使其搜索我使用的特定单词
message.tolowercase
const thisword('yes') if (message.content.include(thisword)) { message.channel.send('no') }
但是我如何将两者结合起来?我试过使用逗号,但是不起作用。