Tutorial

How To Use the JavaScript Developer Console

Updated on May 19, 2022
How To Use the JavaScript Developer Console

Introduction

Modern browsers have development tools built in to work with JavaScript and other web technologies. These tools include the Console which is similar to a shell interface, along with tools to inspect the DOM, debug, and analyze network activity.

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.

This tutorial will go over how to work with the Console and JavaScript within the context of a browser, and provide an overview of other built-in development tools you may use as part of your web development process.

Note: As you follow along in this tutorial, you may notice that your browser and the Console look different from the examples in the images. Browsers are frequently updated and often include new tools and possibly a new visual style. These updates should not affect your ability to use the Console in the browser.

Working with the Console in a Browser

Most modern web browsers that support standards-based HTML and XHTML will provide you with access to a Developer Console where you can work with JavaScript in an interface similar to a terminal shell. This section outlines how to access the Console in Firefox and Chrome.

Firefox

To open the Web Console in FireFox, navigate to the menu in the top right corner next to the address bar.

Select More Tools. With that open, click on the Web Developer Tools item.

Once you do so, a tray will open at the bottom of your browser window:

Firefox Web Console Tray Item

You can also enter into the Web Console with the keyboard shortcut CTRL + SHIFT + K on Linux and Windows, or COMMAND + OPTION + K on macOS.

Now that you have accessed the Console, you can begin working within it in JavaScript.

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. From there, you can select More Tools then Developer Tools.

Chrome Developer Tools Menu Item

This will open a panel where you can click on Console along the top menu bar to bring up the JavaScript Console if it is not highlighted already:

Chrome Developer Tools Menu Item

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, which will bring focus immediately to the Console.

Now that you have accessed the Console, you can begin working within it in JavaScript.

Working in the Console

Within the Console, you can type and execute JavaScript code.

Start with an alert that prints out the string Hello, World!:

  1. alert("Hello, World!");

Once you press the ENTER key following your line of JavaScript, an alert popup will appear in your browser:

JavaScript Console Alert Example

Note that the Console will also print the result of evaluating an expression, which will read as undefined when the expression does not explicitly return something.

Rather than have pop-up alerts that you need to click out of, you can work with JavaScript by logging it to the Console with console.log.

To print the Hello, World! string, type the following into the Console:

  1. console.log("Hello, World!");

Within the console, you’ll receive the following output:

Output
Hello, World!

You can also perform math in the Console:

  1. console.log(2 + 6);
Output
8

You can also try some more complicated math:

  1. console.log(34348.2342343403285953845 * 4310.23409128534);
Output
148048930.17230788

Additionally, you can work on multiple lines with variables:

  1. let today = new Date();
  2. console.log("Today's date is " + today);
Output
Today's date is Wed May 18 2022 15:06:51 GMT-0500 (Central Daylight Time)

If you need to modify a command that you passed through the Console, you can type the up arrow () key on your keyboard to retrieve the previous command. This will allow you to edit the command and send it again.

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.

Working with an HTML File

You can 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.

Bear in mind that as soon as you reload a page after modifying it within the Console, it will return to its state prior to your modifying the document. Make sure to save any changes you would like to keep elsewhere.

Take an HTML document, such as the following index.html file, to understand how to use the Console to modify it. In your favorite text editor, create an index.html file and add the following lines of HTML:

index.html
<!DOCTYPE html>
<html lang="en-US">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Today's Date</title>
</head>

<body>

</body>

</html>

If you save the above HTML file, and load it into the browser of your choice, a blank page with the title of Today's Date will be rendered in the browser.

Open up the Console and begin working with JavaScript to modify the page. Begin by using JavaScript to insert a heading into the HTML.

  1. let today = new Date();
  2. document.body.innerHTML = "<h1>Today's date is " + today + "</h1>"

You’ll receive the following output in the Console:

Output
"<h1>Today's date is Wed May 18 2022 15:06:51 GMT-0500 (Central Daylight Time)</h1>"

Your page should be similar to the following:

The code written in the console outputs the date to the web browser revealing it in the browser

You can modify the style of the page, such as the background color:

  1. document.body.style.backgroundColor = "lightblue";
Output
"lightblue"

As well as the color of the text on the page:

  1. document.body.style.color = "white";
Output
"white"

Now your page should reveal something similar this:

Modified console.log input is reflected on the website. It has a blue background with white text along with today's date.

From here, you can create a <p> paragraph element:

  1. let p = document.createElement("P");

With this element created, you can then go on to create a text node that can be added to the paragraph:

  1. let t = document.createTextNode("Paragraph text.");

Add the text node by appending it to the variable p:

  1. p.appendChild(t);

And finally append p with its paragraph <p> element and appended text node to the document:

  1. document.body.appendChild(p);

Once you have completed these steps, your HTML page index.html will include the following elements:

JavaScript Console date with a paragraph appended

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 itself when you do things on the Console. Once you reload the page it will return to a blank document.

Understanding Other Development Tools

Depending on which browser’s development tools you use, you’ll be able to use other tools to help with your web development workflow.

DOM — Document Object Model

Each time a web page is loaded, the browser it is in creates a Document Object Model, or DOM, of the page.

The DOM is a tree of Objects and shows the HTML elements within a hierarchical view. The DOM Tree is available to view within the Inspector panel in Firefox or the Elements panel in Chrome.

These tools enable you to inspect and edit DOM elements and also let you identify the HTML related to an aspect of a particular page. The DOM can tell you whether a text snippet or image has an ID attribute and can help you determine what that attribute’s value is.

The page that you modified above would have a DOM view similar to this before reloading the page:

JavaScript DOM Example

Additionally, you will see CSS styles in a side panel or below the DOM panel, allowing you to see what styles are being employed within the HTML document or via a CSS style sheet. For instance, notice what your sample page’s body style includes in the Firefox Inspector:

JavaScript CSS Example

To live-edit a DOM node, double-click a selected element and make changes. For example, you can modify an <h1> tag and make it an <h2> tag.

As with the Console, if you reload the page you’ll return to the original saved state of the HTML document.

Network

The Network tab of your browser’s built-in development tools can monitor and record network requests. This tab reveals the network requests that the browser makes, including when it loads a page, how long each request takes, and provides the details of each of these requests. This can be used to optimize page load performance and debug request issues.

You can use the Network tab alongside the JavaScript Console. That is, you can start debugging a page with the Console then switch to the Network tab to see network activity without reloading the page.

To learn more about how to use the Network tab, you can read about working with Firefox’s Network Monitor or getting started with analyzing Network performance with Chrome’s DevTools.

Responsive Design

When websites are responsive, they are designed and developed to both look and function properly on a range of different devices: mobile phones, tablets, desktops, and laptops. Screen size, pixel density, and supporting touch are factors to consider when developing across devices. As a web developer, it is important to keep responsive design principles in mind so that your websites are fully available to people regardless of the device that they have access to.

Both Firefox and Chrome provide you with modes for ensuring that responsive design principles are given attention as you create and develop sites and apps for the web. These modes will emulate different devices that you can investigate and analyze as part of your development process.

Read more about Firefox’s Responsive Design Mode or Chrome’s Device Mode to learn more about how to leverage these tools to ensure more equitable access to web technologies.

Conclusion

This tutorial provided an overview of working with a JavaScript Console within modern web browsers, as well as some information on other development tools you can use in your workflow.

To learn more about JavaScript, you can read about data types, or the jQuery or D3 libraries.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


Tutorial Series: How To Code in JavaScript

JavaScript is a high-level, object-based, dynamic scripting language popular as a tool for making webpages interactive.

About the authors

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
5 Comments


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

really informative

The JavaScript developer console is a tool that allows developers to interact with and debug JavaScript code within a web browser. Here are some basic steps on how to use the JavaScript developer console:

  1. Open the console: To open the developer console, right-click anywhere on a web page, and select “Inspect” or “Inspect Element”. This will open the developer tools window. From there, select the “Console” tab.

  2. Try a command: Once the console is open, you can try running some JavaScript code by typing it directly into the console prompt and hitting enter. For example, you could type “console.log(‘Hello, world!’);” and press enter. This will print “Hello, world!” to the console.

  3. Inspect elements: You can also use the console to inspect elements on a web page. Hover over an element on the page and right-click it. Select “Inspect” and the console will show you the HTML and CSS code for that element.

  4. Debugging: When debugging JavaScript code, you can use console.log() statements to print out the values of variables and other information to help you track down bugs. You can also set breakpoints in your code by clicking on the line number in the source code view.

  5. Errors: If there are any JavaScript errors on a page, the console will display them in red. You can click on the error to see more details about what went wrong.

  6. Clearing the console: If the console becomes cluttered with too much output, you can clear it by clicking on the “Clear console” button or by pressing Ctrl+L on your keyboard.

These are just some basic functions of the JavaScript developer console. There are many more advanced features and commands that you can use to help you debug and develop your JavaScript code.

This comment has been deleted

    Thanks. Been trying to get my head around different browsers and the console. This is a great explanation.

    Great Tutorial

    Try DigitalOcean for free

    Click below to sign up and get $200 of credit to try our products over 60 days!

    Sign up

    Join the Tech Talk
    Success! Thank you! Please check your email for further details.

    Please complete your information!

    Get our biweekly newsletter

    Sign up for Infrastructure as a Newsletter.

    Hollie's Hub for Good

    Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

    Become a contributor

    Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

    Welcome to the developer cloud

    DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

    Learn more
    DigitalOcean Cloud Control Panel