0
const Discord = require('discord.js');
const testBot = new Discord.Client();
const config = require("./config.json");
const args = message.content.slice(prefix.length).trim().split(/ +/g);
const command = args.shift().toLowerCase();
testBot.on("message", (message) => {
if(command === 'help') {
message.channel.send('ok');
} else
if (command === 'hey') {
message.channel.send('yes?');
}
});
testBot.on('ready',() => {
console.log('I am ready!');
})
testBot.login("Secret");
が定義されていません。Discord.jsメッセージは私がNode.jsの初心者だ
このエラーはこれです。 'ReferenceError:メッセージが定義されていません'どうすれば修正できますか?
ありがとうございます。