The Javascript command console.log allow us to “Print Out” to the console. When you need to see what the computer is processing you have to ask it to show you. The correct way to write the code is like this:
console.log("show everything between these parentheses")
This command will log to the console anything within the parentheses including strings and equations. Here are two examples:
console.log(8 * 10); console.log("Nice to be able to see what the interpreter, the computer, is working on.");