Up to this point, I have discussed how to install software and some of the important things you need to know when working with JavaScript. For the most part, JavaScript is something that you work with in the browser.
That being that case, if the code you wrote works, the results will be displayed in the browser. More importantly, if the results do not work, you need a way to see what went wrong.
The question then becomes, “How can I see what is happening to my code in the browser?” Happily, browsers have debugging tools built in. This chapter will go over some tools you can work with while trying ...