send message to specific channel discord.js

JavaScript
channel = client.get_channel(12324234183172)
await channel.send('hello')
client.channels.get("<ID of the channel you want to send to>").send("<your message content here>") channel = client.channels.cache.get('757685515255545917');
    channel.send('Pong');
// REPORT SCRIPT //
// DONT DISLIKE IF YOU CANT UNDERSTAND //
client.on('message', message => {
    if (message.content.startsWith(prefix + 'report')) {
        if (message.author.bot) return;
        message.channel.send(`${message.author}` + ' Our Admin(s) Have Receied Your Report')
        const channel = client.channels.cache.get('CHANNEL-ID-HERE')
        const ReportMessage = message.content.slice(9).trim();
        channel.send(`${message.author}` + "'s Report : - " + ReportMessage)
    }
});const channel = client.channels.cache.find(channel => channel.name === channelName)
channel.send(message)
const channel = client.channels.cache.get(channel => channel.name === 'the channel name')
channel.send(message)
Source

Also in JavaScript: