IMG-LOGO

Error Handling and Debugging

andy - 28 Jun, 2014 3901 Views 0 Comment

In early days, it is actually quite hard to debug in Javascript, because there is no proper development tools to cater this issue. Sometimes, erros displayed by browsers are different and it is quite confusing. Luckly, nowadays latest browsers have built in Javascript debugger console to help you finding errors in Javascript codes.

In this tutorial you will learn how you can use a javascript error handling method to tackle an error.

Try and Catch Statement

If you developed in C# or Java, you may be familiar with this code statement, it is just a try catch block code to wrap any content code that you think will possible resulting an error. See code below example.

try{
   // enter your code here.
}catch(error){
   // enter an error code handler here.
}

Debugging in Javascript

To debug in javascript, you can use a keyword console.log, this will basically will print out some text you pass on this parameter. See below code for example.

   // we will print out the error details if there is an error occurs. Note: the console.log print out usually can be viewed in the javascript debugger console.
   try{
     var total = 10 + 20;
   }catch(error){
      console.log(error);
   }

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Blogs

Related Tutorials