client.channels.create discord.js code example
Example 1: discord.js create channel
// Create a new text channel
guild.channels.create('new-general', { reason: 'Needed a cool new channel' })
.then(console.log)
.catch(console.error);
// Create a new channel with permission overwrites
guild.channels.create('new-voice', {
type: 'voice',
permissionOverwrites: [
{
id: message.author.id,
deny: ['VIEW_CHANNEL'],
},
],
})
Example 2: discord js channel send
const channel = <client>.channels.cache.get('<id>');
channel.send('<content>');