discord.js send a message in every channel code example
Example 1: discord.js send message to specific channel
channel = client.channels.cache.get('757685515255545917');
channel.send('Pong');
Example 2: discord.js send message to specific channel
client.channels.cache.get("channel ID").send("hello world");