Console - Reading Assignment

  1. What is the console used for? to write, manage and monitor javascript
  2. How do you open the Console in Google Chrome? by opening up Developer Tools.
  3. What does console.log function do? it’s like alerts on the page, but you use console.log when in the console to see the alert without having to close a pop up window.
  4. How can you change the contents of an HTML page through the console? by right clicking on the element you want to change and selecting inspect. you can edit the contents by selecting edit as html
1 Like
  1. The console can be used to log data as part of the JS development process and to interact with web pages through JS.
  2. CTRL + SHIFT + J
  3. console.log logs outputs of commands in the console.
  4. Through the ‘Elements’ tab
1 Like

You can write, monitor, manage JavaScript .

With CRTL + Shift + K but I use F12.

console.log logs any value output.

with document.body

1 Like
  1. It is used to write, manage and monitor JavaScript on demand.
    1. In the hamburger menu, open Other Tools > Developer Tools and click the tab for Console.
  2. logs info to javascript console.
  3. Go to Elements and double click what you want to change.
1 Like
  1. What is the console used for?
    It allows you to log information from your interactions with a webpage as you carry out expressions and continue your JS development process. So you can be writing expressions and see how they perform then and there on a page.

  2. How do you open the Console in Google Chrome?
    You go to the 3 dots in the top right corner of the browser and then click on More Tools > Developer Tools and the console opens up on half the screen.

  3. What does console.log function do?
    Within console.log you can test what your outputs will be from the expressions you want to test out.

  4. How can you change the contents of an HTML page through the console?
    You can open console and start making whatever changes you like. You can then go ahead and save the HTML file and the changes would be saved on a new file. If you don’t save the file, when you refresh your screen, you’ll just see the original version you had before making changes in console.

1 Like

Console - Reading Assignment

  1. What is the console used for?
    Console allows us to write, manage and also monitor JavaScript on demand.

  2. How do you open the Console in Google Chrome?
    Click on a drop-down menu at the top-right corner of Chrome browser (3 dots menu)+
    ->More Tools->Developer Tools.

  3. What does console.log function do?
    Console.log will print output of function’s value onto console.

  4. How can you change the contents of an HTML page through the console?
    We can do that by accessing DOM and adjusting element or tag.

G.

1 Like

1.Console provides you the ability to write , manage and monitor javascript on demand

  1. Three dots right upper corner - tools - developer tools
  2. Giving an outputs within the console whenever you work with javascript by logging in into console
  3. Console provides you with a space to modify HTML documents but once you refresh the page it will go back to original state
1 Like

1.Connsole is used for interacting with the code inside the browser. And it is like the way we use to interact with the computer with shell interface.
2. you can press option+command on MacOS to enter the console mode of the browser.
3. The console.log function is to output the result of something into the console itself. It is like “print” command in PYTHON.
4. You can just change the content in the Elements tab in the Chrome console tab. When you make a change, the view of the contents changes. However, it is a fake change because you didn’t change the source code.

1 Like
  1. To log info. as part of the javascript development process as well as allow you to interact with a webpage by carrying out javascript development within the pages context.
  2. click the 3 lines in the top go down to more tools then go down to development tools and click it.
  3. It writes a message to log on the debugging console.
    4.press the up arrow on your key board.
1 Like
  1. The console is used to write, manage and monitor JavaScript on demand. It is built into web browsers
  2. Click the vertical three dots (more) - more tools - Developer tools. Then click Console on the top panel (menu bar) or hold down command+option+J
  3. Print outcomes such as messages, mathematical outputs etc. Essentially an automated response when implemented
  4. Console provides you with the space to experiment with and temporarily modify HTML pages. Once the page is reloaded however, the all changes will be revoked as you cannot change the source code of a webpage
1 Like
  1. To experiment with modifying pages, also to inspect the DOM, debug and analyze network activity.
    • top right corner :arrow_right: more tools :arrow_right: developer tools, or
    • Ctrl+Shift+J,or
    • right click :arrow_right: investigate,or
    • F12
  2. It’s a function that prints any kind of variable, for my understanding it’s used to debug websites somehow.
  3. You can’t permanently change the content via the console, however if you want to modify a previous command you can use the up arrow to rewrite the command.
1 Like

The console is used to writer set out java script in or on a website.
You can use control shift J and that opens the console in Chrome
Console.log is the function that sets out the executive commands to initiate an action in Java Script.

1 Like
  1. Console is used for debugging and testing of JavaScript locally.
  2. MAC: CMD + OPTION + J. Or Menu/ More Tools/Developer Tools/ Console.
  3. It prints output of the log.
  4. Editing with JavaScript can change an HTML page through the console.
1 Like
  1. 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.
  2. How do you open the Console in Google Chrone
    in Chrome, you can 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
  3. What does console.log function do?
    Logs into to the javascript console
  4. How can you change the contents of an HTML page through the console?
    by using functions that add or change the content, for example: document.createElement()
1 Like

What is the console used for?

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 the top right Menu - More Tools - Developer Tools, the choosing “Console” in the tabs.

What does console.log function do?

The console.log function writes out its arguments to some text output device. In browsers, the output lands in the JavaScript console.

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

By typing JavaScript commands in the console.

1 Like
  1. To write, manage, and monitor javascript on demand within a web browser.

Open Chrome:
Menu/ More Tools/ Developer Tools
Click Console
3. The console log function logs a value input into the console.
4. By using the console’s document object model.

1 Like
  1. To interface with tools to inspect the DOM , debug and analyze the network and can be used to log information and interact with web pages , and write manage and monitor JavaScript on demand.

  2. Menu top right of browser window , more tools , then developer tools , or CTRL+SHIFT+J on windows . or COMMAND+OPTION+J on Mac

  3. This command to log or print out functions value onto console.

  4. You can use elements such as document create Element() to modify HTML code on page.

1 Like
  1. Gives the user the ability to write, manage, and monitor Javascript on demand.
  2. Click browser window, go to More Tools, then Developer tools. There you can click on Console.
  3. It logs information to the javascript console.
  4. By using the elements tab in the console and double clicking the element or tag you want to change.
1 Like
  1. What is the console used for? 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. How do you open the Console in Google Chrome?

Click on expanded menu and go to Developer Tools. Click on Console.

  1. What does console.log function do?

An in console command that allows to do several operations without having to click on pop windows.

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

You can also work within the context of an HTML file or a dynamically rendered page in the Console. This provides you with the opportunity to experiment with JavaScript code within the context of existing HTML, CSS, and JavaScript.

1 Like
  • What is the console used for?
    It is used to write and execute code within a web browser

  • How do you open the Console in Google Chrome?
    Setting> more tools> development tools> choose console

  • What does console.log function do?
    console . log () is used as a debugging tool to help you understand what your code is doing. By displaying a message containing either descriptive text that tells you what is happening or the value of particular variables, you can follow along as your code executes.

  • How can you change the contents of an HTML page through the console?
    You can make the changes but wu will have to save it the file or all changes will not be there when opened again

1 Like