try catch finally in javascript
try catch and finally is used to handle all or some of the error when it occur.
try
This statement is contain the set of code for testing.
catch
This statement is execute if any error occur in try block.
finally
This statement always execute after execute the try or catch statement.
Example Program:- (Editor)

Editor is Loading...
Advertisement
try
This statement is contain the set of code for testing.
catch
This statement is execute if any error occur in try block.
finally
This statement always execute after execute the try or catch statement.
Example Program:- (Editor)
Editor is Loading...
Advertisement
Post a Comment for "try catch finally in javascript"