Trying to code this bot but it always give me errors and I am new to javascript so I have no idea what I'm doing wrong
const { Client, GatewayIntentBits } = require('discord.js');
const client = new Client({ intents: [GatewayIntentBits.GUILDS, GatewayIntentBits.GUILD_MESSAGES] });
client.on('ready', () => {
console.log(Logged in as ${client.user.tag}!);
});
client.on('messageCreate', msg => {
if (msg.content === 'ping') {
msg.reply('Pong!');
}
});
client.login('token');