função console.log javascript code example

Example 1: console.log javascript

console.log(10);
console.log('You can also log numbers')

Example 2: how to log to the console javascript

console.log('What you want to log here.');

Example 3: javascript console.log

console.log('I want to log this so I am logging this. Calm down and log.')

Example 4: js log to console

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

Example 5: how to use console.log javascript

console.log("Hello world!");

Tags:

Java Example