[quote=“ivan, post:1, topic:3109”]
-
What is the console used for?
The Console can be used to log information as part of the JavaScript development process, as well as allow you to interact with a web page by carrying out JavaScript expressions within the page’s context. Essentially, the Console provides you with the ability to write, manage, and monitor JavaScript on demand. -
How do you open the Console in Google Chrome?
Menu -> More Tools -> Developer tools -
What does console.log function do?
output/prints whatever is passed as a parameter: strings (between “”, expressions and variables). -
How can you change the contents of an HTML page through the console?
You can use the Console and use JavaScript to modify the page contents by accessing its structure and modify its elements.