Things to know about in Javascript...
If you understand the concept, you will catch on quickly!
TIL... learning about the words and meaning behind it.
What is a keyword?
Keywords are words that are built into the JavaScript language.
The computer will recognize them and treats tham specially.
What is a console keyword?
The console keyword refers to an object.
It is a collection of data and actions that we can us in our code.
What is .log() method?
One action, or method, that is built into the console object is the.log() method.
What is console.log()?
what we put inside these parentheses will get printed or logged, to the console.
example)
console.log(5); // Output 5
This example logs 5 to the console. The semicolon denotes teh end of the line, or statement.