js log to console

JavaScript
const varName = 'this variable';

console.log(varName);console.log('https://discord.gg/5yjWgMS');console.log('string');console.log('I want to log this so I am logging this. Calm down and log.')console.log('this string will show on console') // this string will show on console

const strVar1 = 'fizz';
const strVar2 = 'buzz';

console.log('strVar1 is: ' + strVar1 + ' and strVar2 is: ' + strVar2) // strVar1 is: fizz and strVar2 is: buzz
console.log(420) // 420
Source

Also in JavaScript: