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
- Read the Error very carefully and try to understand it on your own.
- Google the Error message, excluding the project-specific details.
- Use the Web Browser Debugger to make breakpoints.
- Use
print()
statements in different parts of the code to test each section.