From 14060bda94f40eeb3256434b8c187953faa0046d Mon Sep 17 00:00:00 2001 From: roadmap bot <135830415+roadmap-bot@users.noreply.github.com> Date: Sun, 11 Jun 2023 02:08:21 +0100 Subject: [PATCH] chore: add resource under javascript:javascript-control-flow:exception-handling:throw-statement --- .../100-exception-handling/100-throw-statement.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/data/roadmaps/javascript/content/107-javascript-control-flow/100-exception-handling/100-throw-statement.md b/src/data/roadmaps/javascript/content/107-javascript-control-flow/100-exception-handling/100-throw-statement.md index 7cfa0f1b7..d980b4600 100644 --- a/src/data/roadmaps/javascript/content/107-javascript-control-flow/100-exception-handling/100-throw-statement.md +++ b/src/data/roadmaps/javascript/content/107-javascript-control-flow/100-exception-handling/100-throw-statement.md @@ -3,3 +3,6 @@ The throw statement throws a user-defined exception. Execution of the current function will stop (the statements after throw won't be executed), and control will be passed to the first catch block in the call stack. If no catch block exists among caller functions, the program will terminate. (excerpt from MDN) Visit the following resources to learn more: + +- [throw statement - w3schools](https://www.w3schools.com/jsref/jsref_throw.asp) +- [JavaScript MDN Docs](https://developer.mozilla.org/en-us/docs/web/javascript/reference/statements/throw) \ No newline at end of file