Created: 2023-01-28 18:37
Status: #concept
Subject: Programming
Tags: C Python JavaScript Error Handling

Error

Description

Errors contain crucial information that allows developers to pinpoint issues and solve them.

  • there are many kinds of errors.
  • they can be built into compilers or Error Handled by the Programmer.
  • they can be tracked and saved into Logs.

Tips for Resolving Errors

  1. Read the Error very carefully and try to understand it on your own.
  2. Google the Error message, excluding the project-specific details.
  3. Use the Web Browser Debugger to make breakpoints.
  4. Use print() statements in different parts of the code to test each section.

References