Errors
Writing code with errors is a natural part of programming. But rather than avoiding them at all costs, we should learn to understand them! Errors provide us valuable information about how we can improve our programs.
What is an error? Why are they “thrown”?
An error is any code that prevents a program from running successfully.
In the world of programming, we say that “an error is thrown”.
An error that is not handled is considered ”uncaught” until we fix it (or catch it). Uncaught errors will cause the program to crash.
You can manually throw an error in JavaScript like this:
What causes an error? Syntax and Runtime Errors
There are many causes of errors but in general there are two categories:
Syntax Errors: The code you’ve written is invalid and can’t be executed
e.g. you’re missing a closing
"
or you’ve used a keyword that doesn’t belong
Runtime Errors: The code you’ve written can be executed but an error has occured as a result of faulty logic or improper use of data types
e.g. you’ve attempted to invoke the
.push
method on a variable holding a string which doesn’t have that method
Types of Errors
Syntax Errors:
SyntaxError
:
SyntaxError
:Very common. Indicates that a program is not valid JavaScript. These errors may only be generated and propagated as a result of code evaluation. Code evaluation may happen as a result of eval
, Function
, require
, or vm. These errors are almost always indicative of a broken program.
Runtime Errors:
ReferenceError
ReferenceError
Very common. Indicates that an attempt is being made to access a variable that is not defined. Such errors commonly indicate typos in code, or an otherwise broken program.
TypeError
TypeError
Very common. Indicates that a provided argument is not an allowable type. For example, passing a function to a parameter which expects a string would cause a TypeError
.
SystemError
SystemError
Common. Node.js generates system errors when exceptions occur within its runtime environment. These usually occur when an application violates an operating system constraint. For example, a system error will occur if an application attempts to read a file that does not exist.
AssertionError
AssertionError
Less common. Indicates the failure of an assertion. All errors thrown by the node:assert
module will be instances of the AssertionError
class.
RangeError
RangeError
Less common. Indicates that a provided argument was not within the set or range of acceptable values for a function; whether that is a numeric range, or outside the set of options for a given function parameter.
How to Read errors
Errors provide us valuable information about how we can improve our programs so let's learn how to read error messages!
Consider the code below which will throw an error.
To read the error, we want to look for the following:
The error type (
SyntaxError
,ReferenceError
,TypeError
, etc…)In this case, we have a
TypeError
The error message describing the problem.
str.push is not a function
The error call stack
we see the function names, file names and line numbers tracing how we got to the error, with the most recently called function at the top.
causeTrouble
inindex.js
on line2
column6
was invoked by…main
inindex.js
on line10
column2
which was invoked by…Object.<anonymous>
(which means the global scope) inindex.js
on line14
column1
which was executed by NodeEverything from
Module._compile
and below will almost always be there and will be the the same for runtime errors (for syntax errors, the error stack isn’t all that useful)
Handling Errors
Uncaught errors will crash the program. For most errors, we can just edit our program and fix them.
Some errors we can’t fix though. For example, if our program requests data from another program via the internet but the internet is down, then there is nothing we can do (other than fix the internet). What we can do is prevent our program from crashing in these cases.
We can plan ahead and add code to our program that “catches a thrown error” using
try
andcatch
blocks. This prevents the program from crashing and allows us to decide what to do next.
Explanation:
The
try {}
code block attempts to do something that we suspect might throw an error. In this case, it attempts to use the.push
method on the givenarr
value (which it assumes is an array). SincecauseTrouble
was invoked with a string'hello world'
and NOT an array, aTypeError
will be thrown.The
catch(err) { }
code block is executed if an error is thrown and is given theTypeError
object which we can reference with the parameter-like variableerr
. It has properties like.message
which lets us log the error message before continuing on.Since the error in
causeTrouble
was caught, the program doesn’t crash andplayNice
can be executed.
Last updated