Debugging Errors

MDN Pic This lab is to help you with reading errors. Remember, debugging is a part of the job as a software engineers; therefore, knowing how to read errors will help speed up the debugging process.

According to { MDN Web Docs }, Error objects are thrown when runtime errors occur. The Error object can also be used as a base object for user-defined exceptions.

Here are the list of errors you may encounter using JavaScript:

1. { RangeError }

Range Error

Reference Error

4. { TypeError }

5. BONUS: { EvalError }

6. BONUS: { InternalError }

7. BONUS: { URIError }

8. BONUS: { Warning }