Run JavaScript in the Console

You can enter any JavaScript expression, statement, or code snippet in the Console, and it runs immediately and interactively as you type. This is possible because the Console tool in DevTools is a REPL environment. REPL stands for Read, Evaluate, Print, and Loop.

The Console:

  1. Reads the JavaScript that you type into it.
  2. Evaluates your code.
  3. Prints out the result of your expression.
  4. Loops back to the first step.

To enter JavaScript statements and expressions interactively in the Console:

  1. Right-click in a webpage and then select Inspect. DevTools opens. Or, press Ctrl+Shift+J (Windows, Linux) or Command+Option+J (macOS), to directly open the DevTools console.

  2. If necessary, click in DevTools to give it focus, and then press Esc to open the Console.

  3. Click in the Console, and then type 2+2, without pressing Enter.

    The Console immediately displays the result 4 on the next line while you type. The Eager evaluation feature helps you write valid JavaScript. The Console displays the result while you type, regardless of whether your JavaScript is correct, and regardless of whether a valid result exists.

    Console displays the result of the expression '2+2', interactively as you type it

  4. When you press Enter, the Console runs the JavaScript command (expression or statement), displays the result, and then moves the cursor down to allow you to enter the next JavaScript command.

    Run several JavaScript expressions in succession

Autocompletion to write complex expressions

The Console helps you write complex JavaScript using autocompletion. This feature is a great way to learn about JavaScript methods that you didn't know of before.

To try autocompletion while writing multi-part expressions:

  1. Type doc.

  2. Press the arrow keys to highlight document on the dropdown menu.

  3. Press Tab to select document.

  4. Type .bo.

  5. Press Tab to select document.body.

  6. Type another . to get a large list of possible properties and methods available on the body of the current webpage.

    Console autocompletion of JavaScript expressions

Console history

As with many other command-line environments, a history of the commands that you entered is available for reuse. Press Up Arrow to display the commands that you entered previously.

Similarly, autocompletion keeps a history of the commands you previously typed. You can type the first few letters of earlier commands, and your previous choices appear in a text box.

Also, the Console also offers quite a few utility methods that make your life easier. For example, $_ always contains the result of the last expression you ran in the Console.

The $_ expression in the Console always contains the last result

Multiline edits

By default, the Console only gives you one line to write your JavaScript expression. You code runs when you press Enter. The one line limitation may frustrate you. To work around the 1-line limitation, press Shift+Enter instead of Enter. In the following example, the value displayed is the result of all the lines (statements) run in order:

Press Shift+Enter to write several lines of JavaScript.  The resulting value is output

If you start a multi-line statement in the Console, the code block is automatically recognized and indented. For example, if you start a block statement, by entering a curly brace, the next line is automatically indented:

The Console recognizes multiline expressions using curly braces and indents

Network requests using top-level await()

Other than in your own scripts, Console supports top level await to run arbitrary asynchronous JavaScript in it. For example, use the fetch API without wrapping the await statement with an async function.

To get the last 50 issues that were filed on the Microsoft Edge Developer Tools for Visual Studio Code GitHub repo:

  1. In DevTools, open the Console.

  2. Copy and paste the following code snippet to get an object that contains 10 entries:

    await ( await fetch(
    'https://api.github.com/repos/microsoft/vscode-edge-devtools/issues?state=all&per_page=50&page=1'
    )).json();
    

    Console displays the result of a top-level async fetch request

    The 10 entries are hard to recognize, since a lot of information is displayed.

  3. Optionally, use the console.table() log method to only receive the information in which you're interested:

    Displaying the last result in a human-readable format using 'console.table'

    To reuse the data returned from an expression, use the copy() utility method of the Console.

  4. Paste the following code. It sends the request and copies the data from the response to the clipboard:

    copy(await (await fetch(
    'https://api.github.com/repos/microsoft/vscode-edge-devtools/issues?state=all&per_page=50&page=1'
    )).json())
    

The Console is a great way to practice JavaScript and to do some quick calculations. The real power is the fact that you have access to the window object. See Interact with the DOM using the Console.