Como usar o JS Console Log
console.log('string');
The little dog
console.log('string');
console.log("Hi there!");
console.log('Hi there!');
// Prints: Hi there!
// console.log("") is usefull for a lot of things
const myNumberOne = 69;
const myNumberTwo = 420;
console.log(myNumberOne + myNumberTwo);
// Example 2
let x = 4;
let y = 2;
console.log(`The difference between x and y is ${x - y}!`)