javascript terminate function code example
Example 1: how to terminate a program in js
process.exit(1)
Example 2: 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