How can I make my Discord bot give a user a role? It has the "Administrator" permission, and I'm using the nodejs library. Here's my code so far (this initializes the bot):
var auth = require("./auth.json");
var fs = require("fs");
var bot = new discord.Client();
bot.login("TOKENTOKENTOKENTOKENTOKENTOKENTOKENTOKENTOKEN")
bot.on("ready", function(event) {
console.log("Initialized");
});