Skip to Content
JavaScript® Programmer's Reference
book

JavaScript® Programmer's Reference

by Alexei White
August 2009
Intermediate to advanced
1030 pages
21h 39m
English
Wrox
Content preview from JavaScript® Programmer's Reference

Chapter 24. Debugging

One of things about JavaScript development that used to be very challenging was debugging. When I'm writing a .NET application, I often rely on some great debugging tools like Visual Studio to speed up the process of finding and ironing out faults in my program. JavaScript is not dissimilar, with a rich exception model and some amazing tools to help you develop JavaScript and even debug the DOM and CSS. The value of mastering these tools can't be understated, and it's all too easy to go only skin deep with them. JavaScript has exploded in popularity so much that a lot of work has gone into writing great tools for debugging. In this chapter, I introduce most of the major tools and give a good idea of how to use them to their fullest advantage.

Types of Errors

There are three main classifications of errors in programming languages. JavaScript actually will throw quite a number of error types, but they are all essentially one of these fundamental types:

  • Syntax errors

  • Runtime errors

  • Semantic errors

Of the three, syntax errors are the most common. A syntax error occurs when the basic language rules (also known as the syntax) are violated. A common example is a double-dot for a member variable of an object:

myObject..myProperty

Another common example is a missing end-bracket:

if (myVar > 10) {
    myVar = 10;
    if (myVar < 2) {
        myVar = 2;
}

The difficult thing about the latter example is that debugging tools sometimes do not know where to direct your attention, because they're not ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Speaking JavaScript

Speaking JavaScript

Axel Rauschmayer
Dojo: The Definitive Guide

Dojo: The Definitive Guide

Matthew A. Russell
Web Developer's Reference Guide

Web Developer's Reference Guide

Joshua Johanan, Talha Khan, Ricardo Zea

Publisher Resources

ISBN: 9780470344729Purchase book