Throw is about control flow – not error handling

April 10th, 2024//Ep. 184

Sam and Ryan talk about why it’s better to think of throw as a general-purpose JavaScript language feature rather than something that should only be used for error handling. They discuss the ambiguity around the phrase “error handling”, situations that call for dealing with errors locally vs. globally, and how throw can be useful for non-error control flow. They also discuss the problems with trying to shoehorn dynamic features into a static site.

Timestamps

  • Intro
  • Error handling vs. throw-try/catch
  • Errors vs. Exceptions
  • How Next.js uses throw for non-error control flow
  • Adding a dynamic feature to a static site