diff --git a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/100-javascript-errors.md b/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/100-javascript-errors.md index 3802e16c9..1e20252e8 100644 --- a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/100-javascript-errors.md +++ b/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/100-javascript-errors.md @@ -1 +1,17 @@ -# Javascript errors \ No newline at end of file +# Javascript Errors + +JavaScript Errors are used by JavaScript to inform developers about various issue in the script being executed. These issues can be syntax error where the developer/programmer has used the worng syntax, it can be due to some wrong user input or some other problem. + +JavaScript has six types of errors that may occur during the execution of the script: + +* EvalError +* RangeError +* ReferenceError +* SyntaxError +* TypeError +* URIError + +Free Content +JavaScript - Errors +Error Types in JavaScript +JavaScript Errors and Types