Hacker News new | past | comments | ask | show | jobs | submit login

> Developers should never have to use a try-catch.

Is the "no exceptions" rule common in Javascript? Are exceptions trouble in JS for some technical reason compared to eg Python?




Since continuation-passing style is so popular in asynchronous code, errors are typically passed to the callback instead of throwing them. If an error was thrown in, say, a callback for an XMLHttpRequest the original caller would not catch it.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: