Bot info discord.js code example
Example 1: Bots latency discord js
var yourping = new Date().getTime() - message.createdTimestamp
var botping = Math.round(bot.ws.ping)
message.channel.send(`Your ping: ${yourping} \nBots ping: ${botping}`)
Example 2: discord js channel send
const channel = <client>.channels.cache.get('<id>');
channel.send('<content>');