461 Views
Learn how try-catch-finally will be executed in JavaScript try-catch-finally is used to handle runtime errors and prevent them from halting the execution of a program. If we have a finally block, the return statement inside try and catch block are not executed. It will always hit the finally block.
0 comments