I have a function:

    function myfunction()
    {
         if (a == 'stop')  // How can I stop the function here?
         ................
    }

Is there something like exit() in javascript?

Thanks.

link|improve this question

do you want to stop the execution or return? – Ken Struys Jul 25 '10 at 17:20
@Ken Struys what is the difference? as i understand, if i make return, it stops the execution? isn't it? – Syom Jul 25 '10 at 17:23
2  
Well here's the thing, using a return will just return to the context of the calling function. If you actually want the exit semantic you want to stop execution, you could do something like this: vikku.info/codesnippets/javascript/… – Ken Struys Jul 25 '10 at 17:34
@Ken - That link you provided deals with stopping execution of a for loop. Even then, I have no idea why the method suggested would be used, when you could just call break;. To use the example from the article: if(i==5) break; Using return will halt the execution of the function, whether or not you're in a for loop. – user113716 Jul 25 '10 at 18:09
Syom - Yes, return will stop the execution of the function, which seems to be what you asked. – user113716 Jul 25 '10 at 18:11
show 1 more comment
feedback

3 Answers

up vote 13 down vote accepted

You can just use return.

function myfunction() {
     if(a == 'stop') 
         return;
}

This will send a return value of undefined to whatever called the function.

var x = myfunction();

console.log( x );  // console shows undefined

Of course, you can specify a different return value. Whatever value is returned will be logged to the console using the above example.

return false;
return true;
return "some string";
return 12345;
link|improve this answer
I know this is an old post, and this is common practice BUT I think this is a bad solution. If the function is SUPPOSED to return a value, you should use return. If you just blindly use return you might run into problems later. Especially if you start binding events that have a return in them. Check out this post for more info: fuelyourcoding.com/jquery-events-stop-misusing-return-false – dbme Jul 14 '11 at 21:53
1  
@dbme: Functions in JavaScript always return. The return statement is implicit if it hasn't been provided. The default return value is undefined, and that's what my primary solution provides. The article you referenced is talking about doing return false in a jQuery event handler. That's an entirely different issue. This is the proper way to exit a JavaScript function. Obviously if the caller relies on the value returned, the value needs to be defined appropriately. – user113716 Jul 14 '11 at 22:03
...An implicit variation would be if(a != 'stop') { /* run my code */ } so that the code only runs when a doesn't equal 'stop' without providing an explicit return. But the return value is identical to my solution. In both cases, undefined will be returned. – user113716 Jul 14 '11 at 22:06
Awesome response. I didn't realize there was any difference between returning undefined vs false vs a different value. I've been trying to find a definitive answer regarding this behavior for the past hour. So is it safe to say (to reiterate your point) that return is a 100% safe way to exit a method, even if the caller is bound to events etc? – dbme Jul 14 '11 at 22:11
@dbme: Well, it all depends on what is expected by the method calling the function. If some code library defines an event system that will break if it receives undefined (or it doesn't receive some other value) as a return value, then you'll need to conform to the specification of that API, and return the correct value. Generally for an event handling system, it will expect undefined as a simple indication that the handler has finished, and there are no further instructions. With jQuery, return false; has special meaning giving instruction to do a preventDefault and stopPropagation. – user113716 Jul 14 '11 at 22:19
show 2 more comments
feedback

Replace the .......... with return;

link|improve this answer
feedback

This:

function myfunction()
{
     if (a == 'stop')  // How can I stop working of function here?
     {
         return;
     }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.