From b9a43a5f32015fbd435ec1db90f6b4a682250045 Mon Sep 17 00:00:00 2001 From: Aarti Verma <75892381+vermaaarti@users.noreply.github.com> Date: Wed, 12 Oct 2022 17:25:54 +0530 Subject: [PATCH] Added content for JavaScript Error and its types (#2317) * Added content for JavaScript Error and its types along with free tutorial link and YouTube link * Update content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/100-javascript-errors.md Co-authored-by: Kamran Ahmed --- .../103-error-types/100-javascript-errors.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) 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