Console - Reading Assignment

  1. The console is used to write, manage and monitor JavaScript on-demand.
  2. Ctrl=Shft+J
  3. The function of console.log is to store a set of data.
  4. By going to the top right corner and selecting options, going down to more tools and selecting “Save Page As …” or by using the hot key Ctrl+S
1 Like
  1. 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 buy carrying out JavaScript expressions within the pages context. Basically the console provides you with the ability to write, manage and monitor JavaScript on demand.

  2. CTRL + SHIFT + I

  3. Rather than have pop-up alerts that we need to click out of, we can work with the JavaScript buy logging it into the console with console.log

  4. Buy using the document element inside the console.

1 Like
  1. Console allows you to write, manage and monitor Javascript within a web page.

  2. Control + Shift + J

  3. console.log outputs information into the console window

  4. By going to Conrol + shift +J , double click the tag and edit

1 Like
  1. The Console provides you with the ability to write, manage, and monitor JavaScript on demand.
  2. Menu-> More Tools-> Developer Tools-> Console
  3. Code debugging, prints the output to the console.
  4. By using Javascript commands (console) on a browser to modify the HTML page. Any changes would be for testing purposes as they would be lost once the page is reloaded.
1 Like
  1. 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.
  2. To open the Javascript in Chrome, navigate to the menu at the top-right of your browser window. From there, you can select More Tools then Developer Tools.
  3. If serves to work with JavaScript by logging it to the Console.
  4. Using JavaScript commands in the console, it is possible to edit the HTML page.
1 Like
  1. Console provides the ability to write, manage and monitor JavaScript on demand.
  2. The three vertical dots in a row on the top right side of the browser - More Tools - Developer Tools.
  3. Console.log logs the console to the JS functions thus enabling it to perform.
  4. By writing JS code which accesses and manipulates the page’s DOM.
1 Like
  1. What is the console used for?
    The console is used to view the HTML of the webpage and experiment in live time how the modifications in the code might change the website.
  2. How do you open the Console in Google Chrome?
    Command + option + J or Menu - More tools - Developer tools
  3. What does console.log function do?
    It can print alerts, let you work with Javascript, and perform math calculations.
  4. How can you change the contents of an HTML page through the console?
    You would need to go into the Document Object Model (DOM) page. This can be found in chrome under Elements and in the inspector section in mozilla. This allows you to live edit the webpage or change the contents.
1 Like
  1. What is the console used for?
    the Console provides you with the ability to write, manage, and monitor JavaScript on demand.

  2. How do you open the Console in Google Chrome?
    Click on the three dots top right, more tools, dev tools, console.

  3. What does console.log function do?
    Logs info to the javascript console.

  4. How can you change the contents of an HTML page through the console?
    You can use elements like document.createElement() to modify html code.

1 Like
  1. What is the console used for?
    The console allows you to log information, interact with a website, and manage/monitor javascript on demand.

  2. How do you open the Console in Google Chrome?
    Setting in top right -> More Tools -> Developer Tools (or just press F12 on windows)

  3. What does console.log function do?
    It causes the result of the javascript you are writing in the console to appear there as well.

  4. How can you change the contents of an HTML page through the console?
    You enter code into the console like writing a page. The changes are are local and temporary.

1 Like
  1. The console can be used to interact with the elements of a website or to execute functions.
  2. Right click at page on any element and hit inspect or Cmd + Option + J
  3. The console.log () is a function in JavaScript which is used to print any kind of variables defined before in it or to just print any message that needs to be displayed to the user.
  4. Elements such as document.createElement() can be used to modify html code.
1 Like
  1. What is the console used for?

Console is like a shell terminal where you can record notes on the development process as well as view the expression of the javascript command on the webpage

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

Crtl+shift+J

  1. What does console.log function do?

It records the expression of the javascript instructions into a log

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

Use network mode

1 Like

What is the console used for?

The console is used to log information as part of the Java Script development process, as well as allow the interaction with a web page by carrying out JavaScript expressions within the pages context. It Provides the ability to write, manage, and monitor JavaScript on demand.

How do you open the Console in Google Chrome?

Navigate to the top right of the browser window to the symbol of 3 dots, the to the “More Tools” option and then to Developer Tools.

What does console.log function do?

Allows the communication between the programmer and the console with JavaScript. It also gives the opportunity to experiment with JavaScript code within the context of existing HTML, CSS, and JavaScript.

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

Modifying the HTML through the Console allows temporary changes to the website which will be deleted when the page is refreshed. This allows one to see the changes to a page that would occur if made permanent.

1 Like

The console can be used to log information as part of the Javascript development process,and/or execute Javascript within the page’s context.
Ctrll-Shift-J
It prints output to the console.
By typing Javascript directly into the console you can alter the contents of the page

1 Like
  1. The console provides you with a space to experiment with modifying HTML pages.

  2. Navigate to the menu at the top-right of your browser window and select More Tools then Developer Tools. This will open a panel where you can click on Console to bring up the JavaScript Console.

  3. It prints the result on the console.

  4. You can make changes by modifying the dom of the webpage.

1 Like
  1. The Console provides the ability to write, manage and monitor JavaScript on demand.
  2. Click on 3 dots ,top righthand side of webpage, select ‘other tools’ then ‘developer tools’ this will bring up a menu where you can select ‘Console’.
    Mac OS shortcut, Command+Option+J pressed together on webpage will bring up console.
  3. When working with the console rather than have pop-up alerts that we need to continue to click out of, we can work with JavaScript by logging it to the Console with console.log .The JavaScript Console provides you with a space to try out JavaScript code in real time by letting you use an environment similar to a terminal shell interface.
  4. By using the document.body command
1 Like
  1. The console is used to try out /inspect codes on a particular website within the browser
  2. Triple Dots at top right corner / More Tools / Developer Tools… OR (on Windows) Ctrl + Shift + I
  3. console.log simply shows the result of an action described within the function
  4. Go to Elements tab, click on a tag and edit it… (not permanent change! Once refreshed, the website will go back to it’s original state)
  1. Console allows you to test and monitor Javascript within the loaded pages content.
  2. Ctrl+Shift+I or F12
  3. The Console.log allows you to issue Javascript commands directly to the browser or the console itself.
  4. By using the document element and adding the code for desired change.

1. What is the console used for?
a: JavaScript information log can be viewed in the console for management and monitoring.

2. How do you open the console in Google Chrome?
a: CTRL + SHIFT + J (for Chrome users)

3. What does console.log function do?
a: It prints the result of an expression, without the actual return. Mainly used for testing codes.

4. How can you change the contents of an HTML page through the console?
a: By redefining DOM you can edit HTML elements

  1. What is the console used for?

Gives you the possibility to write, manage and monitor your code on demand.

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

Click on the three vertical dots right on your address bar. Click more tools. Click on developer tools. Alternative: Linux and Windows : CTRL + SHIFT + J / macOS: COMMAND + OPTION + J

  1. What does console.log function do?

Gives you the results of your functions inside the console.

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

Open devtools go to the elements tab click on the tag you want to change and modify it. Important! Changes are not permanent after an refresh of the website the changes are reversed.

1 Like
  1. The console provides you with the ability to write, manage, and monitor JavaScript on demand.

  2. Click 3 dots top right, More Tools, Developer tools, then Console. ( COMMAND + OPTION + J Mac ; CTRL + SHIFT + J Linux & Windows

  3. The console.log function allows you to log into the Console and try out JavaScript code in real time.

  4. By using ‘Inspector’ or ‘Elements’ tabs within the Console, we can select different elements in the DOM and make changes.

1 Like