How can I format a Discord bot's message as bold and italicized?

I am looking to modify the message formatting sent by my bot to be bold instead of just italicized. It seems straightforward, but I’m unsure of the process to achieve it.

Using Discord.js version 12.2.0,

handleExecute(msg) {
  const guildQueue = msg.client.queue.get(msg.guild.id);
  return msg.channel.send('Visit this link for the available commands.');
}

Hey! If you want to format with Discord.js, another method is using template literals, which is easier for complex messages. Example: msg.channel.send(`***Your message here***`);. It ensures neat formatting and can handle multiple line messages better!

To format messages in Discord with both bold and italics using Discord.js, you just need to wrap the text with 3 asterisks *** on both sides. So change your send line to msg.channel.send('***Visit this link for the available commands.***'); and it will show up bold & italicized!