Console - Reading Assignment

  1. Consol can be used to test the Javascript and see the changes on the web browser while doing it.
  2. Shortcut: Ctrl+Shift+J or by going in the settings in the develop tools
  3. console.log function will write the responses in the log
    4.form Document Object Model
1 Like
  1. The console is used for logging information and web page interaction
    2.Opened in G Chrome by navigating to the three vertical dots in a row at the top right of browser, then select more tools and then developer tools.
    3.Console.log function logs information to the console
    4.Contents changed by editing
1 Like
  1. The console lets you write, manage, and monitor Javascript on demand in an interface where you can work with it like a terminal shell
  2. In Chrome go to the menu in the top right next to the address bar and go to More Tools then Developer tools, and a panel will open where you can click on the Console tab on the top menu bar
  3. console.log logs information in the Javascript console
  4. You can type Javascript into the console that modifies the HTML like the document object
1 Like

What is the console used for?
the Console provides you with the ability to write, manage, and monitor JavaScript on-demand.
How do you open the Console in Google Chrome?
navigate to the menu at the top-right of your browser window signified by three vertical dots in a row. From there, you can select More Tools than Developer Tools. This will open a panel where you can click on Console along the top menu bar to bring up the JavaScript Console if it is not highlighted already
What does the console.log function do?
it prints whatever you have inside of the () to the console
How can you change the contents of an HTML page through the console?
By opening the console and working with JavaScript to modify it.

1 Like
  1. Console allows you to write, manage and monitor Javascript whenever you like (on-demand), within a browser setting.

  2. Settings on top right (three dots) > more tools > developer tools > console tab along top
    or…
    COMMAND + OPTION + J – on my Mac

  3. allows us to write script and check it without having popups, but rather seeing it work (or not) within the log. if it doesn’t work we can use up arrow to pre-populate the code again and alter it

  4. you can load an HTML page in Console and tinker with it that way, but once you reload the changes are lost. So you will need to go via the Elements tab. Then once you have found the element you wish to change you can double click and alter that way :slight_smile:

1 Like
  1. The console allows us to write, manage, and monitor JavaScript on demand by logging information during development and also interact with web pages.

  2. “ctrl + shift + J” to access the console on google chrome.

  3. The console.log function allows us to check whether our scripts work in the log or not without relying on any popups.

  4. You can click on the element within the script and change the data although the changes won’t be permanent so you’d need to save your script.

1 Like
  1. What is the console used for?
  • Console is used to output JavaScript compiler results and error messages
  1. How do you open the Console in Google Chrome?
  • Generally for any browser you can right click and select inspect and you will be able to see console in one of the tab menus
  1. What does console.log function do?
  • it outputs results of your code into the console
  1. How can you change the contents of an HTML page through the console?
  • by typing in certain JavaScript commands which will change the contents but temporarily as upon refreshing the page it will go back to the hard-coded into the page results.
1 Like

1.The console provides us with the ability to write, manage, and monitor JS code on demand.
2.Menu/ More Tools / Developr Tools/ Console Tab. We can also use quick keys with microsoft and macs:
Microsoft: CTR + SHIFT + J
MAC: CMD + OPTION + J
3.console.log allows the programmer to log data (or objects in most cases) to the JS Console.
4.We can edit HTML contents double clicking the tag, element, or content we wish to edit in the Elements tab and entering the new data in.

1 Like
  1. The console allows you to interact with a web page and write, manage, and monitor JavaScript within that web page.
  2. To open the console in Brave browser (as I don’t use Google Chrome) the easiest way is to press the Ctrl + Shift + I keys simultaneously. Otherwise go to the Brave menu icon in the top right corner and click on it, select “More tools” and then “Developer tools”.
  3. The console.log function is used to log variables of any kind between () in the console.
  4. In the Elements panel of the console (Brave browser) you can alter the contents of a HTML page by double-clicking a selected element to change it.
1 Like
  1. What is the console used for?
  • Log information as part of the JavaScript development process;
  • Interact with a web page by carrying out JavaScript expressions within the page’s context. -
  • Ability to write, manage, and monitor JavaScript on demand.
  1. How do you open the Console in Google Chrome?
  • Navigate to the menu at the top-right of your browser window signified by three vertical dots in a row.
  • Select More Tools then Developer Tools.
  • Click on Console along the top menu bar to bring up the JavaScript Console if it is not highlighted already:
  1. What does console.log function do?
    Logging JavaScript response directily in the console.

  2. How can you change the contents of an HTML page through the console?
    By typing within the console commands that change the HTML content through the references in the DOM.

1 Like
  1. Console is a built-in development tool. It allows you to log information as part of your JavaScript project development, and provides you with a space to try out JavaScript code on existing HTML, CSS, and JavaScript in real-time by letting you use an environment similar to a terminal shell interface.
  2. Chrome provides console access via the 3-dot button, under More Tools select Development Tools.
  3. Console.log allows for a string of input data and output solutions without pop-up alerts.
  4. Modify the page contents by inputting JavaScript expressions. However, once the page is reloaded, it will return to its published state.
1 Like
  1. The console is used for testing JavaScript or HTML commands without saving what you code. It is used to practice.
  2. ctrl + shift + j
  3. It creates a value output for the text content.
  4. By opening the Console and temporarily changing it through JavaScript coding.
1 Like
  1. What is the console used for?
  • provides you with the ability to write, manage, and monitor JavaScript on demand
  1. How do you open the Console in Google Chrome?
  • More tools - Developers tools
  1. What does console.log function do?
  • work with JavaScript by logging it to the Console with console.log
  1. How can you change the contents of an HTML page through the console?
  • open up the Console and begin working with JavaScript to modify the page, but it is important to keep in mind that you’re not changing the HTML document when you do things on the Console
1 Like
  1. What is the console used for?
    The console within your web browser can be used to execute Javascript within the context of a webpage or interact with the webpages’ elements.
  2. How do you open the Console in Google Chrome?
    FN + F12, right click - inspect - console
  3. What does console.log function do?
    console.log is used to output values. It’s an expression that retrieves the log property from the value help by the console binding
  4. How can you change the contents of an HTML page through the console?
    You can change the contents of an HTML page through the console and updating the elements you want to change
1 Like
  1. What is the console used for?
    The console is used to log information as well as to interact with a web page by writing javascript expressions.

  2. How do you open the Console in Google Chrome?
    We can access it through the Developer Tools option. Or with the keyboard shortcut Ctrl + Shift + J on Linux or Windows, or Command + Option + J on Mac. We can use the same shortcuts on Brave. And we can also open it by right clicking on a web page and selecting ‘Inspect’.

  3. What does console.log function do?
    It allows us to work with JavaScript in real time by letting us use an environment similar to a terminal shell interface.

  4. How can you change the contents of an HTML page through the console?
    We can modify HTML pages by writing JavasSript code in the heading section of a web page. We are not really changing the HTML document when we use the console.

1 Like
  1. The console is used to inspect JS codes, write and test the JS.
  2. Ctrl+Shift+I
  3. console.log helps to insert data that needs output.
  4. the tab next to the console is the element tab, through which you can change the HTML.
1 Like

1 to test javascript code, inspect the element, and to execute javascript commands.
2In Chrome: Menu -> More tools -> Developer Tools
3 it logs information to the javascript
4You can modify the contents of an HTML page by using the document element inside the console

1 Like

[quote=“ivan, post:1, topic:3109”]
What is the console used for?
The Console provides the ability to write, manage, and monitor JavaScript on demand.

How do you open the Console in Google Chrome?
cmd+potion+J

What does console.log function do?
The function: console.log - allows the programmer to log data to the JS Console.

How can you change the contents of an HTML page through the console?
Double-click a selected element and make changes.

1 Like
  1. What is the console used for?
    It’s a built in development tool used to manage, write and monitor JS. You can log information and interact with a webpage.

2.How do you open the console in google chrome?
press control, shift and J as a shortcut. Or click the 3 vertical dots on the top right of the browser, select more tools, then developer tools.

3.What does the console.log function do?

It logs information within the console

  1. How can you change the contents of an html page though the console?
    You can change the contents of an html page in the console and see the changes in real time. You can integrate JS commands.
1 Like
  1. The Console provides you with the ability to write, manage, and monitor JavaScript on demand.
  2. CTRL + SHIFT + J or Menu - More Tools then Developer Tools then Console.
  3. Shows the output of different commands within the console.
  4. By typing in commands which will change the HTML file temporarly.
1 Like