JavaScript Flow Control Statements
2025-01-08
return 'value'; // Stop execution. Value is optional
break label; // If Switch, stop execution, If Loop, exit Loop block, Label optional
try {
test00("5");
}
catch (e) { // Handle Error
console.log("Error: test00 Failed: + e.description );
}
TODO: Finish Throw & Finally usage.