exit program js
process.exit(1)
js exit function
You can just use return
Example:
function myFunction() {
console.log("I QUIT!")
return;
}
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
exit a function in javascript
//javascript exit function using return
function add(a, b) {
// if a and b is empty then exit the function
if (!a && !b) {
return;
}
return a + b;
}
console.log(add(1, 3));
// 4
console.log(add());
// undefined
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us