guild.members discord.js code example
Example 1: Find channel discord js
// Insert the Channel ID in the brackets. TO find that, right click the
// channel and select "Copy ID". Discord Developer must be on.
let channel = message.guild.channels.cache.get(channelid)
Example 2: discord js channel send
const user = <client>.users.cache.get('<id>');
user.send('<content>');
Example 3: discord js channel send
const channel = <client>.channels.cache.get('<id>');
channel.send('<content>');