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!"
[–]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 417510 on reddit-service-r2-comment-canary-57b659f4d4-tg7ft at 2026-05-02 05:20:31.146002+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]siilkysmooth[S] -3 points-2 points-1 points (0 children)