The left side of the web app is the code editor
code editor
This is where the programmer would write/edit their code
Run button
Run
This is where the programmer would ask the web application to run the program
Output section
Output
This is where the JavaScript program would output any message that the program is meant to
This area is called the console
console
console.log() is a function in JavaScript used to print messages to the web console.
console.log()
It’s a very handy tool for debugging and testing your code.
When you use console.log(), it outputs the specified message or variable value to the console, which you can view in your browser’s developer tools.
Last updated 1 year ago
console.log("Hello, world!");