Possible Duplicate:
Javascript Try-Catch Performance Vs. Error Checking Code
A colleague of mine told me that using a lot of try catch blocks in javascript is going to be a hit in performance . Is that claim true and if yes then why ?
A colleague of mine told me that using a lot of try catch blocks in javascript is going to be a hit in performance . Is that claim true and if yes then why ? |
|||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Short answer, yes he is correct. A Anyway, |
|||
|
|
Take a look here: http://jsperf.com/try-catch-performance-overhead |
|||
|
|
|
Yes. There is a good article on that at dev.opera.com. This is likely because try-catch-blocks have that certain, unusual handling of result objects, they need to check whether its type is Still, try-catch-clauses are a powerful feature, and one should use them where appropriate and useful. But instead of having them inside performance-critical functions, you should wrap them around so they are not executed too often. |
||||
|
|