when a new person joins the server discord js code example

Example 1: send a message when a bot joins your server discord.js

client.on('guildCreate', guild => {
  guild.systemChannel.send(`Hello, I'm LMAOBOT. Thanks for inviting me, here are a list of all my commands! :alien:`)
});

Example 2: how to reference the bot joining a server in discord.js

client.on('guildCreate', guild => {
    const channel = guild.channels.cache.find(channel => channel.type === 'text' && channel.permissionsFor(guild.me).has('SEND_MESSAGES'))
    channel.send("Thanks for inviting me")
})