基本上,您的消息包含“Will”一词。我想检查消息是否包含 will 以外的任何内容。这是我的代码:
if(msg.content.startsWith("Will")) {
if (!msg.length) {
console.log("Nothing other than "Will")
}
}
其他人可以帮忙吗?非常感谢。
答案 0 :(得分:0)
您必须检查 message.content
。如果 message.content
不是 Will
,那么做任何事情。
if(msg.content === 'Will'){
console.log("Nothing other than "Will")
}
}