Welcome to Brannon's Reading Notes!

This serves as my personal page to keep and update my reading notes for Code Fellows Courses 201, 301, and 401.

#Reading 10

Error Handling & Debugging 🐞

Some things to sort through when beginning the debugging process:

###Deal With It 🕶️

  1. Debug the Script/Fix Errors
  2. Handle Gracefully: Try, Catch, Finally
    • try{ //try to execute this } catch{ //If there is a problem, run this } finally{ //always execute this ```}

Other tips: