break a function js code example
Example 1: 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
Example 2: javascript exeit from loop
To stop a for loop early in JavaScript, you use break: