come out of typescript function code example
Example: js break out of a function
By using 'return;':
function myfunction(){
if(a == 'stop')
return; //returns Void, ending function
}
Does not work when using a Conditional operator:
let result = 1 == 2 ? "YES" : return; //<--- throws error