Console - Reading Assignment

  1. What is the console used for?
    The console is used to log information as part of a Javascript development process and interact with a web page. It provides the ability to write, manage, and monitor JavaScript on demand.

  2. How do you open the Console in Google Chrome?
    A short cut to open the console through google chrome is CTRL + SHIFT + J

3.What does console.log function do?
Logs data and performs functions in the console.

  1. How can you change the contents of an HTML page through the console?
    By changing the contents with Javascript within the console or through DOM (Document Objective Model) a tool which allows to inspect and edit elements within.
  1. To edit or test the code in the browser real time, without changing original code.
  2. View > Developer > JavaScript Console or Right Click > Inspect
  3. Prints the attribute result in the console log
  4. You cannot change the HTML code contents from the console. All changes will revert back to the original document when you refresh the page.
  1. What is the console used for?
    The console is used for logging information as a part of JS development process. It allows you to interact with the page, test the code,…
  2. How do you open the Console in Google Chrome?
    In Google Chrome, Press F12 or using the short cut Ctrl Shift J.
  3. What does console.log function do?
    Console.log function is used for logging information into the Console panel.
  4. How can you change the contents of an HTML page through the console?
    By using JS command.
  1. The Console tools are used to write web page data by working with JavaScript along with various other web technologies. With Console you can interact directly or indirectly with a web page. Console provides the on demand ability to direct the web page with JavaScript
  2. In Google Chrome the Console is opened by selecting the three (3) vertical dots on the right side of the Google browser. Click on “More Tools” in the drop down window. Another drop down menu will appear. Click on “Developer Tools” in the panel. Another panel will appear. Click “Developer Tools” and the Console will open. The Console can also be opened by using the keyboard shortcut. Press CTRL + SHIFT + J.
  3. The console.log function is a command function that shows the output or print-out of the result of an expression directly on the Console data page. This is very helpful to the programmer for viewing mistakes or debugging. Sometimes the data expression is not explicitly defined but will be evaluated and printed out as undefined. With the console.log function, pop-up alerts are avoided in order to save time by not having to click out of each entry.
  4. The Console provides a way whereby HTML content may be changed or edited in real time. state. With this tool the programmer can work with existing JavaScript code. This is accomplished by loading the chosen file, to be edited, into the browser. Then open up the Console to begin modifying the page. If the programmer wants to keep the edit they must save any changes because when the page is reloaded, after modifying in the Console, it will return to its prior
  1. Console is used for monitoring network activity, debug and inspect DOM (Document Object Model). It essentially allows to write, manage and modify javascript on demand
  2. by visiting options>more tools>developers tools
  3. It allows to log values in the javascript console and thus allows to check the output
  4. By visiting Document Object Model in elements tab in chrome or inspector tab in firefox

1.The console is tool built in a browsers in order to interact with the browsers true JS or HTML
2.Just press F12 or menu at the top -right-Moore tools-developer tools and click on Console
3.It’s printing the value between ()
4.Just need to load the page or file with the browser and double click on the object select inspectation ,from menu

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?
In Google Chrome, Press F12 or using the short cut Ctrl Shift J.
What does console.log function do?
it eliminates the pause that the script makes when using alert.
How can you change the contents of an HTML page through the console?
By using JavaScript commands

  1. The Console is used as a tool to write, manage, and monitor JavaScript on demand.
  2. Press the keyboard shortcut CTRL + SHIFT + J on Linux or Windows, or COMMAND + OPTION + J
    on macOS.
  3. The console.log function will display texts, math results, values of variables, or any combinations of
    these on the computer screen.
  4. You can change the contents of an HTML page through the console by inserting lines of JavaScript
    and saving it.

What is the console used for?
log information as part of the JavaScript development process as well as allow you to interact with the web page by carrying out JavaScript expressions.

How do you open the Console in google Chrome?
To right 3 verticle dots, more tools, developer options, and console

What does console.log function do?
Allows a script to log data or objects to JavaScript console

4.How can you change the contents of an HTML page through the console
Interact with the DOMS using “document” object or double click it

1. What is the console used for?

The console is used to interact and test JS in the browser environment. You can write code and the browser’s console will output it’s results in the same window making quick development testing of different pieces of JavaScript incredibly easy.

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

There are a number of ways, but on a Mac the easiest is by using the following keystroke:

“Command + Option + ‘j’”

3. What does console.log function do?

Console.log prints the output of the code executed within it’s parentheses straight to the console in line. The returned value appears directly below the console.log() function just executed.

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

By utilizing the the “document.body.[INSERT SPECIFIC CHANGE HERE]” method, you can add temporary changes to the pre-loaded webpage on the browser. However, as soon as the browser updates the webpage, all changes will be erased and the document will be reverted back to it’s original form.

What is the console used for?
For viewing and testing JavaScript
How do you open the Console in Google Chrome?
View -> developer -> JavaScript console
What does console.log function do?
Writes the output of a function to the screen
How can you change the contents of an HTML page through the console?
By accessing the HTML within the Elements tab, and editing or adding to the HTML

What is the console used for?
Debugging mode, looking at the page script, writing your own script and testing it in a live web environment

How do you open the Console in Google Chrome?
f12 or the 3 dots at the top right hand>more tools>development tool or ctrl+shift+l

What does console.log function do?
Outputs information

How can you change the contents of an HTML page through the console? Through the dev mode basically. But when you close it out it will revert back

  1. Console provides you with the ability to write, manage, and monitor JavaScript on demand.
  2. CTRL + SHIFT + J on Linux or Windows, or COMMAND + OPTION + J on macOS.
  3. Console.log keeps the execution of the file in Console without publishing it on the website.
  4. The Console provides you with a space to experiment with modifying HTML pages, but it is important to keep in mind that you’re not changing the HTML document when you do things on the Console.

1.Javascript using development tools built into browser
2. Menu - more tools - developer tools - console
3. Send output to the console
4. Copy page into browser and open console

  1. The Console can be used to log information as part of the JavaScript development process. It gives you the ability to write, manage, and monitor JavaScript on demand.

  2. To open the Console in Google Chrome navigate to menu at top right of browser window and click on button with three small dots. Click more tools, then click developer tools. Click on Console on top menu bar. There is also a keyboard shortcut: CNTL+SHIFT+J on Windows.

  3. Console.log function is used to work with alerts by logging them to the console so they can be worked with in JavaScript instead of constantly clicking out of pop-up alerts.

  4. To change the contents of an HTML page all one must do is press the up arrow key in Console to retrieve the previous command, edit, and send again.

  1. A Console is a development tool built in to work with JavaScript and other web technologies.
    2.You go to the 3 vertical dots and select MORE TOOLS, then DEVELOPER TOOLS; then click CONSOLE. Or by using the keyboard shortcut CTRL + SHIFT + J on Linux or Windows, or COMMAND + OPTION + J on macOS, which will bring focus immediately to the Console.
    3.It logs information to the javascript console.

Are you guys seeing this error msg when you try to do the HTML exercise in the console exercise?

Hello here,

-The console is used for to interact via the browser directly with the Webpage.
-You open the console in Google Chrome clicking on the window with the three vertical dots-> more Tools-> developer Tools.
-The console .log function issues an Output, it makes the wirtten visual. You print a string.
-edit HTML Content by 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 is used for modifying and experimenting with web pages from within the browser
  2. To access console in chrome: Cmd + Option + J (Mac)
  3. console.log produces outputs from parameters given to it
  4. You can modify content though console, or through the DOM by double clicking the element in the inspector view
1 Like