In JavaScript, errors are only detected during runtime. Therefore, it is impossible to get compile-time errors when building JavaScript applications. There are several reasons an app might encounter a JavaScript exception: invalid input, server error, syntax errors, or errors in the application logic. In this article, we will dig into exception handling in JavaScript so that when your app encounters errors, it affects users as little as possible.