discord.js add role by id code example
Example 1: get discord.js role
let role = message.guild.roles.cache.find(r => r.id === "Role ID");
// The member you want to add the role to
let member = message.mentions.members.first();
// Add role to the member
member.roles.add(role);
// Or add it to yourself
message.author.roles.add(role);
Example 2: how to give a role to a new member in discord.js
var role = message.guild.roles.find(role => role.name === "MyRole");
message.member.addRole(role);
Example 3: add role to channel discord.js
channel.updateOverwrite(channel.guild.roles.everyone, { VIEW_CHANNEL: false });
Example 4: add role to channel discord.js
// deleting the channels overwrite for the message author
channel.permissionOverwrites.get(message.author.id).delete();