discord.js send message to specific channel

JavaScript
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');
message.reply("message here");
message.channel.send("message here");client.channels.cache.get("channel ID").send("hello world");client.channels.get("<ID of the channel you want to send to>").send("<your message content here>")
client.channels.get("<ID of the channel you want to send to>").send("<your message content here>")

Source

Also in JavaScript: