how to write console.log in javascript code example
Example 1: how to log to the console javascript
console.log('What you want to log here.');
Example 2: javascript log to console
console.log('message1' + ' - ' + 'message2')
Example 3: how to use js console log
console.log('string');