What is the console used for?
The Console is used to write, manage and monitor JavaScript, log information during the development process and interact with a web page using JS
How do you open the Console in Google Chrome?
Ctrl+Shift+J or Chrome Options - More Tools - Developer Tools - Console
What does console.log function do?
Lets us log into the Console to test changes and JS commands without having to navigate pop up alerts.
How can you change the contents of an HTML page through the console?
By accessing the DOM (Document Object Model) via the Console and editing the HTML code or utilising JavaScript commands. These edits are not saved however, and a reload of the page will revert to its original state.