From c50200bfe7449f59386b73c1cdcee91ec476b420 Mon Sep 17 00:00:00 2001 From: Alyxson Marques Date: Fri, 22 Sep 2023 16:40:06 -0300 Subject: [PATCH] Added links to exception handling javascript roadmap (#3775) Co-authored-by: Kamran Ahmed --- .../100-exception-handling/100-throw-statement.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 3be668018..3d9f0c911 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 @@ -6,4 +6,5 @@ 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) -- [Error Handling](https://javascript.info/error-handling) \ No newline at end of file +- [Error Handling](https://javascript.info/error-handling) +- ["Throw" operator](https://javascript.info/try-catch#throw-operator)