discord.js bot

JavaScript
//first you must install dicord.js by running the command: npm install discord.js
//once u do that copy and paste this into your main file
const Discord = require('discord.js');
const client = new Discord.Client();

client.on('ready', () =>{
	client.user.setStatus('your status')
	console.log('Connected!')
})
//rest of your code

//always remember to never share your token with anyone
client.login('your-token-here')require('dotenv').config();
const Discord = require('discord.js');
const bot = new Discord.Client();

const TOKEN = process.env.TOKEN;

bot.login(TOKEN);const Discord = require('discord.js') //this says that its using discord.js and classifing it as a bot
const bot = new Discord.Client();

const token = 'put your bots token here!';
//link to the dev portal to make your own discord bot here: https://discord.com/developers/applicationsconst Discord = require('discord.js');
const client = new Discord.Client();
const token = 'YOUR TOKEN HERE'; // For get a token , go here https://discord.com/developers/applications

client.login(token);const user = <client>.users.cache.get('<id>');
user.send('<content>');This code help you get started with your discord bot go to this website 
https://pastebin.com/sPXPkh6K or https://pastebin.com/DxAMwfFd
update
///pls vote if this helps
///Btw i made this code
///if problem with code join our server https://discord.gg/XWvY4WMkXY
Source

Also in JavaScript: