Console - Reading Assignment

1.Console provides US with the ability to write, manage, and monitor JavaScript on demand.
2.CTRL + shift + J or 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.We can print string for example “hello world”
4,Dom/elements in chrome and than change content

2 Likes
  1. The console allows you to test and monitor javascript within the context of the loaded page
  2. By pressing CTRL+SHIFT+C and clicking ‘console’
    or
    Control+Shift+I
    or
    Menu -> More tools -> Developer Tools
  3. console.log is used to output something to the console
  4. By using javascript, you can change the contents of an HTML page through the cinsole
2 Likes
  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 execute Javascript within the page’s context.

  2. How do you open the Console in Google Chrome?
    Ctrll-Shift-J

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

  4. How can you change the contents of an HTML page through the console?
    By typing Javascript directly into the console we can alter the contents of the webpage

1 Like
  1. Experimenting with JS and getting real time feedback

  2. settings, developer tools

  3. make console do calculations

  4. Use Javascript in console

1 Like
1. What is the console used for?
   To write, manage and monitor Java Script on-demand. As well as to log information and basically interact with a web page. 
   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.
2. How do you open the Console in Google Chrome?
   ctrl+shift+j or click F12 and select the console tab
3. What does console.log function do?
   You can do math, show text, run JS in real-time to test results
4. How can you change the contents of an HTML page through the console?
   You test changes by adding elements, modify the style of the page, change text color, background, basically edit the website using JS. You are not changing the HTML document, just testing using the console.
1 Like
  1. It gives you the ability to write, manage and monitor javascript on demand and to interact with the webpages context making it more dynamic.

  2. Chrome: Menu in the top-right -> more tools -> developer tools -> choose tab “Console"

  3. With console you can try out your code in real time, it’s environment is similar to a terminal shell interface

  4. Although it is not permanent, you can do it by adding elements, styles, etc in Javascript.

2 Likes

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.

How do you open the Console in Google Chrome?
menu–>more totls–>Developer tools–>console

What does console.log function do?
We can work with JavaScript by logging information to the Console with console.log

How can you change the contents of an HTML page through the console?
using the inspect option in of the browser

1 Like
  1. The console offers the possibilty to interact with a web page by executing JavaScript expressions in the context of the page. It is also often used to display logging messages.
  2. In Google Chrome the Console can be opened via “three vertical dots menu button” -> More Tools -> Developer Tools -> Console. It ca be opened faster with the keyboard shortcuts CTRL+SHIFT+J (Linux, Windows) or CTRL+OPTION+J (macOS), respectively.
  3. With the function console.log the passed information can be logged to the Console.
  4. The contents of an HTML page can be modified in the console by modifying the document object through JavaScript commands.
1 Like
  1. What is the console used for?
    This is a tool for command line interaction directly with a program (like linux, windows or a browser).

  2. How do you open the Console in Google Chrome?
    Rightclick. Inspect (ctrl+shift+i). The tool will open on the right side at the bottom of the page.
    You can also switch at the top between the available tools.

  3. What does console.log function do?
    This function allows to see results of commands without printing on the webpage or popping out windows.

  4. How can you change the contents of an HTML page through the console?
    To actually print on the webpage, we can address specific elements of the HTML code and change there content or simply add or delete new elements of the webpage.

1 Like
  1. Console allows debugging JS code, inspecting the DOM, and analyze network activity of the web pages.
  2. From top RHS menu or via Cntr + Shift + J
  3. Prints output to console window.
  4. By accessing various elements of the DOM. But these changes are transient so to keep these document should be saved external to console.
1 Like
  1. Typing in the code. User interface for interacting.
    Allows the ability to write, manage, and monitor JavaScript on demand.

  2. Chrome, ctrl+shift+J
    For Firefox, ctrl+shift+K

  3. It allows you to display the code output within the console rather
    than on the browser.

  4. By deploying to the console.

1 Like

1.It is used to push javascript code and see how the page reacts to them on real time, it can be used for alot of things like debuggin and changing html content.
2.right click on the page and inspect, there you can click on the console tab.
3.it logs whatever you put inside the statement to the console.
4.One could hover the element that one wished to change and inspect it by right click or once on the developer console, using the “document” word, one could further customize an spesific Html element.

1 Like

What is the console used for? For debug our page and see the errors
How do you open the Console in Google Chrome? F12 key
What does console.log function do? Print the return of a function
How can you change the contents of an HTML page through the console? Press key into the part we need to change to proove the change immediately, for example, change the name of an event of our script, change the color in some ccs, and things like that

1 Like
  1. Logging information as part of the JavaScript development process, essentially you can write, manage, and monitor JavaScript on demand.
  2. You go to More tools and then Developer tools.
  3. Shows your text on the console.
  4. right click the element that you want to change and select inspect.
1 Like

1. What is the console used for?

Console provides us with the ability to write, manage, and monitor JavaScript on demand.

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

Right Click > More Tools > Developer Tools > Tab “Console”

Or simply Command + Option + J with mac.

3. What does console.log function do?

Print the function outputs in the console.

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

right click & select "inspect“ with chrome

2 Likes
  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.

  2. 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. You can also enter into the JavaScript Console by using the keyboard shortcut CTRL + SHIFT + J on Linux or Windows, or COMMAND + OPTION + J on macOS.

  3. We can work with JavaScript by logging it to the Console.

  4. The contents of an HTML page can be modified in the console by modifying the document object through JavaScript commands.

1 Like

1- JS console is used for debugging and test code quickly

2- You can open Console in Google Chrome pressing F12

3- console.log() prints param values by console

4- You can change the contents of an HTML page through the console accessing its elements by JS with getElemetBy…() or by any other library like jQuery

1 Like

1.What is the console used for?
For viewing\testing javascript on a web page
2.How do you open the Console in Google Chrome?
CTRL + SHIFT + J or browse to it though settings>more tools
3.What does console.log function do?
Outputs commands that you execute to the console window
4.How can you change the contents of an HTML page through the console?
By going to the console tab and by executing javascript document commands at the prompt

1 Like
  1. Console provides you the ability to write, read, and execute JS commands
  2. Command + option + J
  3. Allows you to remain in the console when writing functions
  4. By writing commands directly to the console.log
1 Like

What is the console used for?
Log information as part of the JavaScript, allows interaction with webpages. Essentially allowing you to write, monitor and manage JavaScript
How do you open the Console in Google Chrome?
To open the console on Chrome browser you can use this easy method
ctrl+shft+J
What does console.log function do?
Will not output a pop up but rather output a log on the console itself
How can you change the contents of an HTML page through the console?
Through the elements you can right click and edit as HTML

1 Like