1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 20:21:50 +02:00

Add program errors (#2380)

* created programmer error file

* Update content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/ProgrammerError.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Manohar Kumar P
2022-10-12 02:38:09 +05:30
committed by GitHub
parent 259a3f28f3
commit db29c1df91

View File

@@ -0,0 +1,3 @@
# Programmer Errors
Programmer errors are bugs and should be dealt with in our code. they can always be avoided by changing some line(s) of code. Examples of such errors are; when a String is passed where an Object was expected, trying to read a property that is “undefined”, called an asynchronous function without a callback, and so on.