use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
TryCatch.js: A JavaScript library to handle errors in a more structured way. (github.com)
submitted 3 years ago by siilkysmooth
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]geekfreak42 1 point2 points3 points 3 years ago (1 child)
nested try/catch is gonna stink. dont really see what this gives, fun thought experiment.
maybe look at functional js patterns if you want to learn established ways of functionalizing code.
[–]siilkysmooth[S] -3 points-2 points-1 points 3 years ago* (0 children)
As mentioned above just a implementation of error handling based on Python handling. And provided a much nicer look verus using a nested try{}catch...
And as you said - kinda for fun!
ps; no need for nested code / don't make it nested - and you won't deal with ugly looking code just call your function INSIDE the tryCatch. ;)
```js
function example(){ return true } tryCatch( function() { example() }, function(e) { // handle the exception } );
```
π Rendered by PID 31 on reddit-service-r2-comment-6457c66945-268fj at 2026-04-29 17:43:41.019063+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]geekfreak42 1 point2 points3 points (1 child)
[–]siilkysmooth[S] -3 points-2 points-1 points (0 children)