I have a function:
function myfunction()
{
if (a == 'stop') // How can I stop the function here?
................
}
Is there something like exit() in javascript?
Thanks.
|
I have a function:
Is there something like Thanks.
| ||||
|
show 1 more comment
feedback
|
|
You can just use
This will send a return value of
Of course, you can specify a different return value. Whatever value is returned will be logged to the console using the above example.
| |||||||||||||
feedback
|
|
This:
| |||
|
feedback
|
forloop. Even then, I have no idea why the method suggested would be used, when you could just callbreak;. To use the example from the article:if(i==5) break;Usingreturnwill halt the execution of the function, whether or not you're in aforloop. – user113716 Jul 25 '10 at 18:09returnwill stop the execution of the function, which seems to be what you asked. – user113716 Jul 25 '10 at 18:11