what is finally code example

Example 1: importance of finally block in java

Finally block is used for cleaning up of resources such as closing connections, 
sockets etc. if try block executes with no exceptions then finally is called 
after try block without executing catch block. If there is exception thrown in 
try block finally block executes immediately after catch block.
If an exception is thrown,finally block will be executed even if 
the no catch block handles the exception.

Example 2: finally

.finally(function() {
   // settled (fulfilled or rejected)
});
.finally(()=> {
   // settled (fulfilled or rejected)
});

Example 3: what is finally

Finally is used to place important code, it will be executed
whether an exception is handled or not. Finally is a block