Answers for "js exit function"

-1

exit program js

process.exit(1)
Posted by: Guest on January-11-2021
0

js exit function

You can just use return

Example:
function myFunction() {
  console.log("I QUIT!")
  return;
}
Posted by: Guest on August-28-2021
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
Posted by: Guest on March-14-2020
0

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
Posted by: Guest on October-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language