Code is prone to errors. You will quite likely make errors⦠Oh, what am I talking about? You are absolutely going to make errors, at least if youâre a human, not a robot.
But in the browser, users donât see errors by default. So, if something goes wrong in the script, we wonât see whatâs broken and canât fix it.
To see errors and get a lot of other useful information about scripts, âdeveloper toolsâ have been embedded in browsers.
Most developers lean towards Chrome or Firefox for development because those browsers have the best developer tools. Other browsers also provide developer tools, sometimes with special features, but are usually playing âcatch-upâ to Chrome or Firefox. So most developers have a âfavoriteâ browser and switch to others if a problem is browser-specific.
Developer tools are potent; they have many features. To start, weâll learn how to open them, look at errors, and run JavaScript commands.
Google Chrome
Open the page bug.html.
Thereâs an error in the JavaScript code on it. Itâs hidden from a regular visitorâs eyes, so letâs open developer tools to see it.
Press F12 or, if youâre on Mac, then Cmd+Opt+J.
The developer tools will open on the Console tab by default.
It looks somewhat like this:
The exact look of developer tools depends on your version of Chrome. It changes from time to time but should be similar.
- Here we can see the red-colored error message. In this case, the script contains an unknown âlalalaâ command.
- On the right, there is a clickable link to the source
bug.html:12with the line number where the error has occurred.
Below the error message, there is a blue > symbol. It marks a âcommand lineâ where we can type JavaScript commands. Press Enter to run them.
Now we can see errors, and thatâs enough for a start. Weâll come back to developer tools later and cover debugging more in-depth in the chapter Debugging in the browser.
Usually, when we put a line of code into the console, and then press Enter, it executes.
To insert multiple lines, press Shift+Enter. This way one can enter long fragments of JavaScript code.
Firefox, Edge, and others
Most other browsers use F12 to open developer tools.
The look & feel of them is quite similar. Once you know how to use one of these tools (you can start with Chrome), you can easily switch to another.
Safari
Safari (Mac browser, not supported by Windows/Linux) is a little bit special here. We need to enable the âDevelop menuâ first.
Open Settings and go to the âAdvancedâ pane. Thereâs a checkbox at the bottom:
Now Cmd+Opt+C can toggle the console. Also, note that the new top menu item named âDevelopâ has appeared. It has many commands and options.
Summary
- Developer tools allow us to see errors, run commands, examine variables, and much more.
- They can be opened with F12 for most browsers on Windows. Chrome for Mac needs Cmd+Opt+J, Safari: Cmd+Opt+C (need to enable first).
Now we have the environment ready. In the next section, weâll get down to JavaScript.
Comments
<code>tag, for several lines â wrap them in<pre>tag, for more than 10 lines â use a sandbox (plnkr, jsbin, codepenâ¦)