discord.js check if bot has permission code example

Example 1: if member has role discord.js

let allowedRole = message.guild.roles.find("name", "rolename");
    if (message.member.roles.has(allowedRole.id) {
        // allowed access to command
    } else {
       // not allowed access
    })

Example 2: discord.js check for permissions

/*Check if user in first mention has kick permissions
You may need to replace msg with message
And user is a variable of the user you want to check
*/
if (user.hasPermission("KICK_MEMBERS"){
    console.log("Has permission")
} else {
  console.log("Doesn't have permission")
}
//go to https://discord.js.org/#/docs/main/stable/typedef/PermissionResolvable to get all options

Example 3: check if bot has permission discord.js

//Check if my bot has permission ADMINISTRATOR
const guild = Client.guild.cache.get("GUILD_ID");
if(guild.me.hasPermission("ADMINISTRATOR")) {
	console.log("I have the Permission Administrator");
}else {
	console.log("I don't have Permission Administrator");
}

Tags:

Misc Example