hwo to show something in js consolelog code example
Example 1: how to use js console log
console.log('string');
Example 2: how to log something in the console. javascript
console.log('https://discord.gg/5yjWgMS');
Example 3: change console log to print javascript
function print(value) {
console.log(value)
}
print("Hello")