1console.log('this string will show on console') // this string will show on console
2
3const strVar1 = 'fizz';
4const strVar2 = 'buzz';
5
6console.log('strVar1 is: ' + strVar1 + ' and strVar2 is: ' + strVar2) // strVar1 is: fizz and strVar2 is: buzz
7console.log(420) // 420
1console.log(10); // Integer
2console.log(true); // Boolean
3console.log('String'); // String