Console - Reading Assignment

What is the console used for?

similar to a shell interface, along with tools to inspect the DOM, debug, and analyze network activity.
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 then Developer Tools - click the tab for console/.

What does console.log function do?

Console.log function logs info to the javascript console

How can you change the contents of an HTML page through the console?

Create and index.html file save the file and then open consoloe and begin by using java script to insert a heading into html.

1 Like

1.) To work with JavaScript in an interface like a terminal shell. You an write, manage, and monitor JavaScript in the console.
2.) In the menu, first choose “More Tools”, then “Developer Tools”. This opens a panel, where you can click on “console”.
3.) It logs things to the console for debugging, if necessary.
4.) You can change a html-based page with JavaScript through the console, but if you want to keep the modifications, you’ll have to save the contents of the console. Otherwise a refresh will return to the original content.

1 Like
  1. Console is a tool built in into a browser allowing to work with JavaSript and, thus, modify web page content
  2. More Tools/ Developer Tools/ click “console” on the opened panel
  3. console.log is used to display information defined in JavaSript code in upper lines of a specified code
  4. contents of the console needs to be integrated within the HTML document of a web page and then saved in order for changes to be saved and document be modified accordingly
1 Like
  1. to read java scrip where you can also try implementing new codes
  2. ctr. shift J
  3. you can write within the console and log information
  4. you can modify the contents of an HTML page by using the DOM
  1. the console is 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.
  2. 3 dots on the top right, then weitere tools, entwicklertools.
  3. it can do math or as well dates… variables… on javascript.
  4. Using the document comand.
1 Like
  1. What is the console used for?

The Console can be used to run JavaScript code on a webpage. The execution is temporary and only seen by the console user and therefor allows for code to be tested.

  1. How do you open the Console in Google Chrome?

Menu button at the top right (the one with the three dots) >>> More Tools >>> Developer Tools >>> Console

  1. What does console.log function do?

Console.log will log the output of a line of code to the console. I.e. it shows up there, rather than on the webpage.

  1. How can you change the contents of an HTML page through the console

In Chrome, switch to the ‘Elements’ tab (next to the ‘Console’ tab). Here you get a hierarchical view of all elements in the page - HTML and otherwise. You can live edit the existing elements here.

1 Like
  1. The console is used to view and interact with the code.
  2. Right click on the website and go into web console or inspector.
  3. Console.log shows you if you have any errors.
  4. By editing the source code in the console.
1 Like
  1. The console is used to log information. And it is a part
    of the JavaScript development process.

  2. To open the console in Google chrome: first, go to the top-right
    of the browser window, then, press the three vertical dots and, finally,
    select More Tools and Developer Tools. Also, you can enter CTRL+SHIFT+J.

  3. Console.log prints any message that needs to be displayed for the user.
    It can be used to alert you of an issue.

  4. The DOM-Document Object Model allow you to change the content of an
    HTML in the console. When a web page is created the browser creates a
    DOM. It gives you an overview of the HTML.

1 Like
What is the console used for?

It could be used for many diffrent things it can example be used for logging information.
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 then Developer Tools.
What does console.log function do?
It can log something in the console.
How can you change the contents of an HTML page through the console?
Yes you can.

1 Like
  • It is used for interacting with web technologies. The console gives the ability to write, manage and monitor JavaScript.

  • Ctrl + Shift + J

  • It logs information into the console.

  • By clicking the elements in the element section and write what i like to.

1 Like
  1. Provides you with the ability to write, manage, and monitor JavaScript on demand.
  2. You can navigate to the three vertical dots at the top-right of the browser window -> select More Tools -> Developer Tools -> (opens panel) click on Console. You could also use the following shortcut: CTRL + SHIFT + J.
  3. The console.log writes a message to the console and is useful for testing purposes.
  4. You can the change the contents of an existing HTML page by opening the console and experimenting with JavaScript - but all modifications will removed upon refreshing the page - so any changes that you want to keep must be saved elsewhere.
1 Like
  1. It allows you to check your code on the web in real time.
  2. Click on the three dots in the right hand corner, click more tools, click developer tools.
  3. Console.log allows you to execute javascript in the browser.
  4. Use the DOM function.
1 Like
  1. What is the console used for?
    The console provides space to experiment with temporary modification of HTML on the page using JavaScript.

  2. How do you open the Console in Google Chrome?
    Press [control], [shift], [J], as a short cut to open or access the console via 3 dots in top right corner of browser, select ‘more tools’, then select ‘developer tools’.

  3. What does console.log function do?
    Logs information and executes commands to produce an output within the console.

  4. How can you change the contents of an HTML page through the console?
    by using JavaScript to make temporary modifications of the page or by accessing the Document Object Model (DOM) of the page to allow inspection and temporary editing of the DOM elements in the page.

1 Like

What is the console used for?

It helps to log information while JavaScript development. It gives the ability to write, manage and monitor JavaScript on demand. We can try out JavaScript code in real time using JavaScript console which is similar to a terminal shell interface.

How do you open the Console in Google Chrome?

More tools -> Developer tools -> Console

Right click and then page info also works

What does console.log function do?

console.log() method is used to log message in the browsers console.

How can you change the contents of an HTML page through the console?

You can open up the console in chrome browser go to the console work with JavaScript to modify the page.

1 Like
  1. To write javascript commands in the browser.
  2. The “three dots” => more tools => tools for developers
  3. logs information to the script window.
    4 By opening the elements window and change things
1 Like
  1. The console allows for debugging JavaScript.
  2. ctrl + shift + i
  3. Console.log outputs a message to the web console.
  4. You can change the contents by using JavaScript functions within the console.
1 Like
  1. Console allows debugging JS code, inspecting the DOM, and analyze network activity of the web pages.
  2. From top RHS menu or via Cntr + Shift + J
  3. Prints output to console window.
  4. By accessing various elements of the DOM. But these changes are transient so to keep these document should be saved external to console.
1 Like
  1. The console is used to interact with a web page.
  2. You can open it through More Tools --> Dev Tools
  3. Prints output to the console.
  4. By using JS to modify the contents of the HTML
1 Like
  1. What is the console used for?
    Console is used to log information as part of the JavaScript development process and interact with a webpage. It also provides you with the ability to write, manage and monitor JavaScript on demand.

  2. How do you open the Console in Google Chrome?
    Navigate to menu > More Tools > Developer Tools or CTRL + SHIFT + J

  3. What does console.log function do?
    Used to log outputs to the Console

  4. How can you change the contents of an HTML page through the console?
    By going to the Elements tab next to the Console tab

2 Likes
  1. What is the console used for?
  • Gives one the ability to write, manage, and monitor Javascript on demand.
  1. How do you open the Console in Google Chrome?
  • Using the keyboard shortcut ctrl + shift + J, or you find it in the top right menu and look for ‘Developer Tools’
  1. What does console.log function do?
  • Prints the given text (parameter) in the console.
  1. How can you change the contents of an HTML page through the console?
  • One can modify the contents using the corresponding Javascript commands with proper syntax.
2 Likes