Console - Reading Assignment

Thank you Malik. Great advice! I left out a dot. With the math, I calculated 32/3, and got 10.667, not 66. Still wrong. After reply, I realized that the remainder after the 10 would have to be 2. No remainders in Sudoku.
About Chrome and Console, I had to set up a new Chrome account, and F12 appeared as a narrow strip of JavaScript at the bottom of the screen. There is not a support for Chrome, only basic Google. I spoke with a Google assistant. Finally, on my own, I found Google Console. When I practice, it interrupts and finds just about everything I do to be an “error.” All I want is a dual screen and to practice what I’ve seen in the lectures, in the Eloquent JavaScript manual, and what I have copies on W3school site. I need to find a tutorial on how to set up Chrome to make it work more easily. I am enjoying the course and the YouTube presentations. Thank you.

  1. What is console used for? It can be used to log information as part of the JavaScript development process and allow you to interact with a web page using JavaScript within the context of the page itself. It lets you write, manage, and monitor JavaScript on demand.

  2. How do you open the console in Google Chrome? CTRL+SHIFT+J (But I use BRAVE, so it’s CTRL+SHIFT+I)

  3. What does the console.log function do? The console.log function lets you print text without the use of pop-ups on the browser.

  4. How can you change the contents of an HTML page through the console? Using various commands, an HTML page can be modified using the browser’s console; elements such as background color, text size, and just about anything else can be changed. For example, assigning a variable to the Date() function and displaying that today’s date using the document.body.innerHTML command let’s you modify and HTML page on the fly.

1 Like

I would suggest you to follow on with the courses to understand how to use the console. It is pretty detailed already. :slight_smile:

1 Like
  1. The console allows you to write, manage, and monitor JavaScript on demand through a web browser. It is a tool that can be used to log information and run scripts within a website’s context.

  2. Ctrl+Shift+J or, from the menu, select “More Tools”, then “Developer Tools”, then select the “Console” tab.

  3. It allows you to view the output of the code in the console window without running on the webpage. It also allows you to run JavaScript code within the context of existing HTML, CSS, and JavaScript.

  4. You can use a tool/tab within the console(Inspector-Firefox/Elements-Chrome) to view and edit the DOM (document object model), which is a hierarchical tree of objects that contains all HTML elements.

1 Like
  1. What is the console used for?
    The console allows the user to interact with the web page

  2. How do you open the Console in Google Chrome?
    CMD+OPTION+J

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

  4. How can you change the contents of an HTML page through the console?
    By hitting the elements tab and make edits there

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?
    On chrome, you would 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?
    It 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. How can you change the contents of an HTML page through the console?
    You can change the contents of HTML by using the Elements tab and double-clicking on what you want to change.

1 Like
  1. What is the console used for?

The console is used to write, manage, and monitor Javascript on demand.

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

Ctrl+Shift+J on Windows and Linux. Command+Option+J for macOS.

  1. What does console.log function do?

Logs the results in the console instead of using pop-up alerts that must be clicked out of.

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

Click the elements tab, then, double click on the content you wish to change.

1 Like
  1. A console is used to write, monitor, and manage Javascript on demand.

  2. Click on the top right corner of Google Chrome with the button consisting of 3 verticle dots. From there select more tools, then Developer Tools.

  3. The console.log function allows you to perform actions within the console.

  4. You load up the html page on the desired browser and open the console, then edit the HTML contents on the console. You must save the file in order for the changes to be made.

1 Like
  1. What is the console used for?
  • Used to Log Information as part of JavaScript Development Process
  • Allows You to Interact with a webpage by carrying out Javascript expressions within the page’s context
  • Console provides you with ability to write, manage, and monitor javascript on demand
  1. How do you open the Console in Google Chrome?
  • Menu - More Tools - Developer Tools - Console
  • CTRL + SHIFT + J (Linux or Windows)
  • COMMAND + OPTIONS + J (MacOS)
  1. What does console.log function do?
  • Opening up the possibility to log something into the console, to try out JS code in real time and to modify contents of the webpage
  1. How can you change the contents of an HTML page through the console?
  • By clicking on Elements & modifying the individual element/content
1 Like

1.) A console provides the ability to write, manage and monitor Javascript on demand, It allows you to interact with a web page by carrying out Javascript on demand.

2.) To open on chrome you click the 3 vertical dots at the top right of the chrome browser window next click more tools then developer tools

3.) It allows us to work with javascript by logging it in the Console rather than having a pop-up alert

4.) In the inspector tab on fire fox and the elements tab for chrome and brave

1 Like
  1. The Console provides you with the ability to write, manage, and monitor JavaScript on demand.
  2. Menu > More Tools > Developer Tools
  3. Console.log prints/logs the result within the console.
  4. We can use JS to modify the page through the console.
1 Like
  1. The console is used to interact with a webpage and to see and interact with the JavaScript on the webpage.

  2. Click the three lines in the top right corner --> more tools --> developer tools

  3. Console.log logs the the information in the JavaScript console.

  4. By using the elements tab

1 Like
  1. The console allows you to write, manage and monitor JavaScript on demand.
  2. You can open the console:
  • Ctrl + Shift + J
  • Right mouse button—> Inspect
  1. the console.log function prints content onto the console.
  2. You can manage the contects of an HTML page by running code, which generates changes on the page. Now this only allows you to experiment, as changes do not apply once the page is reloaded.
1 Like
  1. The console is used to write, monitor, and manage JavaScript whenever you want.

  2. You open the console in Google Chrome by going to the three dot menu in the top right, then more tools, then developer tools, then click console along the top menu bar on the panel that just opened, or just use the keyboard shortcut CTRL+SHIFT+J.

  3. The console.log function allows you to execute and type code within the console without affecting the webpage you are currently on.

  4. You can change the contents of an HTML page through the console by utilizing the document object model or DOM by opening the inspect or elements panel in Google Chrome.

1 Like
  1. What is the console used for?
    Console is built in browser tool to write, manage and monitor javascript in context of webpage. Its like coding and executing code at the same time. Live Show

  2. How do you open the Console in Google Chrome?
    Alt + Command + C for Mac Google Chrome.
    right clicking and selecting Inspect opens the chrome developer tools. Inside you will find the chrome console for that HTML page.

  3. What does console.log function do?
    This commands to log or print out the function’s value onto the console instead of popping up on browser window.

  4. How can you change the contents of an HTML page through the console?
    You can change the content of HTML page by accessing HTML page elements using javascript commands in console. you can also do it in DOM too without javascript.

1 Like
  1. Allows to log information, interact with the webpage by carrying out expressions. Ability to write monitor and manage JS
    2.ctrl+shft+J
    3.Allows you to try JS in real time
  2. Edit through the elements tab and inputting the data
1 Like
  • What is the console used for?

    The Console is used to test code ideas and debug snippets of code that are not working properly.

  • How do you open the Console in Google Chrome?

    It’s in the Dev Tools menu

  • What does console.log function do?

    It logs output of a function to the Console

  • How can you change the contents of an HTML page through the console? You can do this by running the appropriate javascript commands/functions in the console.
1 Like
  • What is the console used for?
    The Console provides us with the ability to write, manage, and monitor JS code on demand.
  • 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.
  • What does console.log function do?
    Console.log allows to log data to the Java Script Console.
  • How can you change the contents of an HTML page through the console?
    We can edit HTML contents by double clicking the tag, element, or content we wish to edit in Elements tab and entering the new data in.
1 Like

1. What is the console used for?
Console is used for to experiment with layout and edits to an existing web-page.

2. How do you open the Console in Google Chrome?
By going to settings -> additional tools -> developer tools

3. What does console.log function do?
console.log allows us to do display our edits only in console and not on html page.

4. How can you change the contents of an HTML page through the console?
You can do this by running the appropriate javascript commands/functions in the console.

1 Like
  1. What is the console used for?
    It is used to experiment with your website even though the newly added data is not permanently saved.
  2. How do you open the Console in Google Chrome?
    Search for Tools > Developer Tools in order to find it.
  3. What does console.log function do?
    This command basically allows you to convert your inputs into an output.
  4. How can you change the contents of an HTML page through the console?
    You need to go to the Elements tab in order to change the desired information.
1 Like