How To Open Console Tab in Web Development Tools
How To Open Console Tab in Web Development Tools
Donate Now
(https://www.javascripttutorial.net/donation/)
Web development tools allow you to test and debug the JavaScript code. Web development tools are
often called devtools.
Modern web browsers such as Google Chrome, Firefox, Edge, Safari, and Opera provide the devtools
as built-in features.
Generally, devtools allow you to work with a variety of web technologies such as HTML, CSS, DOM,
and JavaScript.
In this tutorial, you will learn how to open the Console tab of the devtools to view messages output by
JavaScript.
Google Chrome
https://www.javascripttutorial.net/web-development-tools/ 1/5
29/07/2022, 07:53 How To Open Console Tab in Web Development Tools
<script>
console.log('Hello, devtools!');
</script>
The devtools will open the Console tab by default. It will look like this:
The first message is 'Hello, DevTools!' which is the output of the following command:
console.log('Hello, DevTools!');
To output the value of the variable (https://www.javascripttutorial.net/javascript-variables/) , you use the following
console.log() method. For example:
console.log(message);
https://www.javascripttutorial.net/web-development-tools/ 2/5
29/07/2022, 07:53 How To Open Console Tab in Web Development Tools
This is because the variable msg has not been defined in the code but was referenced in the
assignment.
Now, you can see both normal messages issued by the console.log() and the error messages. It’s
enough to start. We’ll dive into the devtools in the later tutorial.
Safari
If you are using Safari browser on Mac, you need to enable the Developer Menu first:
https://www.javascripttutorial.net/web-development-tools/ 3/5
29/07/2022, 07:53 How To Open Console Tab in Web Development Tools
https://www.javascripttutorial.net/web-development-tools/ 4/5
29/07/2022, 07:53 How To Open Console Tab in Web Development Tools
In this tutorial, you have learned how to open the Console tab of the devtools for checking messages
issued by JavaScript code.
https://www.javascripttutorial.net/web-development-tools/ 5/5