Console - Reading Assignment

  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 Chrome?
    To open the JavaScript Console 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.
    OR
    Right Click => inspect
  3. What does console.log function do?
    logging text, numbers, math and multiple lines with variables to the Console.
  4. How can you change the contents of an HTML page through the console?
    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. In this case, once you reload the page it will return to a blank document.
    So you have to copy the code to your code text editor.
1 Like

What is the console used for?

The console can be used to log information that allows the user to interact with the webpage allowing them to write, manage, and monitor JavaScript. It allows the user to try out the JS code in real time.

How do you open the console in Google Chrome?

Hold down option + command + I on Mac

What does console.log function do?

Console.log allows to user to log results into the JS console rather then having alert pop ups.

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

You can change the contents of an HTML page by logging a DOM node to the console.

1 Like

1.The console is a place where you can display messages as your application is running and where you can manipulate the contents of a web page.

  1. To open the JavaScript Console 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.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.You can edit HTML contents through DOM by double clicking the tag, element, or content you wish to edit.

1 Like
  1. The Console is used to write, manage, and monitor JavaScript on demand.
  2. Go to the main menu and click the three vertical dots. Go to more tools and click on deveolper tools.
  3. It logs the info to the console
  4. Using the document element inside the console.
1 Like
  1. The console is used for keeping a log of the information from webpage in Javascript and it allows the user to interact with the webpage by carrying out Javascript expressions within the page’s context.
  2. To open the console in Google Chrome, you need to click the three dots at the top right corner, click more tools followed by developer tools.
  3. The console.log function allows you to print a message onto the console.
  4. You can change the contents of an HTML page through the console by typing out all the changes you need in Javascript through the HTML file within the webpage then saving the code once the page is reloaded the page should be modified to the changes within the code.
1 Like
  1. The console is used to test out javascript codes.
  2. To open the Console in Google Chrome:
  • click the 3 vertical dots on the upper right corner of the Chrome browser
  • click “More Tools”
  • click “Developer Tools”
  • click “Console” on the developer window.
  1. The console.log function displays the result of the javascript command.
  2. Click the “Elements” tab on the developer window and click the respective element, tag or attribute to change/revise it.
1 Like
  1. What is the console used for?
    It provides you essentially with the ability to write, manage, and monitor Javascript on demand.

  2. How do you open the Console in Google Chrome.
    Right click on the page, and choose inspect. Or through the 3 line menu in the R/H top corner of the browser – then – More Tools - then - Developer Tools - then - Console.

  3. What does console.log function do?
    It allows you to write Javascript code or do calculations within the console without having it pop up on the browser.

  4. How can you change the contents of an HTML page through the console?
    You have to save the HTML page and the changes you made to it in file.

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 then Developer Tools.

What does console.log function do?

  • print any kind of variables defined

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

  • Load up the html file on a browser then open the console to modify the pages.
2 Likes
  1. What is the console used for? the console can be used to log information as part of the javascript dev prosses as well as allow you to interact with a web page by carrying out javascript expression withing the pages context . bassically the console allows you to the ability to write, manage, and moniter, JavaScript on demand it is also similar to a terminal shell interface

  2. How do you open the Console in Google Chrome? either ctrl shift j or the three dots followed by more tools followed by DEV tools followed by console

  3. What does console.log function do? allows you to type into the console log to say stuff or solve math problems for you

  4. How can you change the contents of an HTML page through the console? you can contents by entering command in the console this is good to test stuff out but has no lasting effect on whatever is being eddited

2 Likes
  1. It is used to log information, as well as allow you to interact with a web page by carrying out JavaScript expressions within the page’s context. It enables one write, manage, and monitor JavaScript on demand.
  2. In Google Chrome, CTRL + SHIFT + J keys or by using the F12 key
  3. Console.log gives an output of what is written between the two () .
  4. It enables one to write javascript modifications to an html page like change colour, make the pages appear more interactive and add other features.
1 Like
  1. Console provides you with the ability to write, manage, and monitor JavaScript on demand.

  2. To open the Javascript console in Chrome navigate to the menu at the top-right of the browser window signified by three vertical dots in a row. Click More Tools then Developer Tools. The keyboard shortcut CTRL + SHIFT + J on Linux or Windows, or COMMAND + OPTION + J on macOS

  3. Acts as an environment similar to a shell interface. Stops pop up alerts, allows for math, work on multiple lines with variables, and code within the context of existing HTML, CSS, and JavaScript.

  4. By using Javascript in the console you can modify saved HTML pages

1 Like

1.The Console can be used to log information as part of the JavaScript development process. Essentially, the Console provides you with the ability to write, manage, and monitor JavaScript on demand.
2.you have to click 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. This will open a panel where you have to click on Console
3. It outputs information to the console
4.Although it is not permanent, you can change the html page using javascript through the console, or the DOM

2 Likes
  1. The console is where you write JavaScript. Console is a tool to log information, To inspect DOM, debug, and analyze network activity. Access to Developer Console to interface html with Javascript is useful.
  2. To open console in Google Chrome, navigate to the dots, click console, and select “more tools” and then developer tools. Alert(“Hello World!”);
  3. Console.log can output both simple and complicated math and other written language variables. To modify a command, type the up arrow on keyboard to retrieve the previous command and then edit the command, save and send.
  4. To change or edit the content of an HTML page through the console, double click on the file, open the HTML file, access HTML. Log a DOM node to the console, right click on it, select “Edit HTML” or “Edit Text.” Notice the DOM is updated on the page and also in the Element Panel.Inspect element, save changes and send.
1 Like
  1. What is the console used for?

The console gives you the ability to write, manage and monitor JavaScript on demand.

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

Shift+CTRL+ J

  1. What does console.log function do?

It is used to print any variables before in it or to display a message to the user.

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

In the element section of the console (the DOM)

1 Like
  1. The console is used to interact with a webpage using Javascript
  2. Three lines > more tools > developer tools > console tab
  3. Allows you to display output in the console
  4. Entering Javascript to manipulate the HTML elements.
1 Like

Console-

  1. The console is used for the development process. The console allows developers to interact with a web page, write, manage, monitor in real time before making it live, if I am understanding this correctly:)

  2. Open the console in Google Chrome in two different ways:
    a. in the browser window, go to the menu bar represented by three vertical dots, select more tools, go to developer tools and the console window will pop up, and
    b. use the keyboard shortcut by pressing CTRL + SHIFT + J

  3. The console.log function outputs a message in the console.

  4. Change the contents of an HTML page through the chrome console by clicking in the console tab in the upper left of the menu bar. This doesn’t change the html document itself but allows the testing of the web contents in real time.

1 Like
  1. The console is allowing us to use to use to interact with javascript engine.

  2. For Google Chrome, you click on view, developer, developer tool and then you will get to console.

  3. Console.log function helps to avoid with pop-up alerts.

  4. We can use Javascript to change contents of HTML page through the console.

1 Like
  1. A console provides us the ability to write, manage and monitor JavaScript on demand.
  2. To open the Console in Chrome you go in Settings in the top right of the page than select More Tools , Developer Tools.
  3. The console.log function allow us to work with JavaScript by logging in to the Console.
  4. The console provides me the space to modify HTML pages , but when reloading it will turn a blank page , unmodified.
2 Likes

The javascript console can be used to execute scripts on a webpage or log infomation.
The dot menu. more tools developer tools
logs info onto the javascript console
DOM via javascript document object

2 Likes

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

2)In Google Chrome:Manu->More Tools->Developer Tools->Console Tab.

3)It allow us to work with Javascript by logging it to the console,without the need to click out of the pop-up alert.

4)By using Javascript,for e.g. document.body.innerHTML.

2 Likes