i do not quite understand this “console” term
also, what is console.log
The console is a place where commands are typed, and logs are logged. console.log(); is pretty straight forward, it LOGS stuff into the Console. You have to specify what you want to log inside the ( ) parentheses. Here’s an example:
var hello = "hello";
console.log(hello);// The console will log "hello"
thank you for your help
