0
8
llucycodes42
The "try" block will execute until it either succeeds or fails, and then the "catch" block will execute. If the "try" block fails, the "catch" block will execute and then the program will jump to the "finally" block.
Shortcut: try
try {
} catch (e) {
}