Skip to content

Commit e4e46cc

Browse files
committed
First pass over chapter 10
Almost complete rewrite. Still not great.
1 parent c06903f commit e4e46cc

5 files changed

Lines changed: 580 additions & 891 deletions

File tree

08_error.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,8 +622,10 @@ When an exception makes it all the way to the bottom of the stack
622622
without being caught, it gets handled by the environment. What this
623623
means differs between environments. In browsers, a description of the
624624
error typically gets written to the JavaScript console (reachable
625-
through the browser's Tools or Developer menu). In Node, which is more
626-
careful about data corruption, the whole process is stopped.
625+
through the browser's Tools or Developer menu). Node.js, the
626+
browserless JavaScript environment we will discuss in [Chapter
627+
20](20_node.html), is more careful about data corruption. It aborts
628+
the whole process when an unhandled exception occurs.
627629

628630
{{index crash, "error handling"}}
629631

0 commit comments

Comments
 (0)