Q:

how to log something in the console. javascript

console.log('message1' + ' - ' + 'message2')
4
const varName = 'this variable';

console.log(varName);
8
console.log('What you want to log here.');
6
console.log('https://discord.gg/5yjWgMS');
3
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
1
console.log('your text here');
console.log(69);
-1

New to Communities?

Join the community