Chapter 10
Debugging Your Code
IN THIS CHAPTER
Learning JavaScript’s error types
Debugging errors using the Console
Setting breakpoints
Watching variable and expression values
Learning JavaScript’s most common errors and error messages
Testing proves a programmer’s failure. Debugging is the programmer’s vindication.
—BORIS BEIZER
It usually doesn’t take too long to get short scripts and functions up and running. However, as your code grows larger and more complex, errors inevitably creep in. In fact, it has been proven mathematically that any code beyond a minimum level of complexity will contain at least one error, and probably quite a lot more than that.
Many of the bugs that creep into your code will consist of simple syntax problems that you can fix quickly, but others will be more subtle and harder to find. For the latter — whether the errors are incorrect values being returned by functions or problems with the overall logic of a script — you need to be able to get “inside” ...
Get HTML, CSS, & JavaScript All-in-One For Dummies now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.