Hi every one,👋 Today I’m going to discuss about exceptions occur in java script. This is one of advance topic in java script and really important to have an idea about exception handling in js. First we move on to errors in java script. There are 3 types of errors in programming. Figure 1 Syntax errors occur when we miss any kind of syntax inside the codes. Like, Figure 2 Run time errors occur during execution. It bot because of any syntax errors. It happens like, trying to call a method but that method is not exist. Ex: <script type = “text/javascript”> document.getData(); </scrip> Logical errors are occur due to logical mistakes that happen by programmers. Because of these errors we can’t get the actual result that we need. When there is any run time error (exception) happen in the java script code we can handle them before the execution of the program. There are 3 types of handling ways · ...