how to console log in javascript from html tag code example
Example 1: javascript log to console
const varName = 'this variable';
console.log(varName);
Example 2: 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 3: console log javascript
console.log("hello", value);