Solved
Why I can not use 'return' keyword to stop script execution?
Why I can not use 'return' keyword to stop script execution? It should be supported in a javascript function.
Why I can not use 'return' keyword to stop script execution? It should be supported in a javascript function.
Hi,
It's how it works, to return a value you should use var result = "value";
If you want to execute script execution anyway you can use break and block combination:
end: {
// Your code here
// if you want to break here: break end;
// More code here
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.