console.log() is used to log a variable into the console. Whatever is inside the parentheses is logged to the console.
Examples:
• console.log("Shawn")
• console.log(2 * 5)
• console.log(10 / 2)
Console: