discord.js check if member has permission code example

Example 1: 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 2: 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");
}