how to get a bot online on discord

JavaScript
const Discord = require('discord.js');
const bot = new Discord.Client();

const TOKEN = "put ur token";

bot.login(TOKEN);
Source

Also in JavaScript: