Given is the following code:
function two() {
return "success";
}
function one() {
two();
return "fail";
}
If you test the code by calling function one(), you will always get "fail".
The question is, how can I return "success" in function one() by only calling function two()?
Is that even possible?
Regards
Given is the following code:
function two() {
return "success";
}
function one() {
two();
return "fail";
}
If you test the code by calling function one(), you will always get "fail".
The question is, how can I return "success" in function one() by only calling function two()?
Is that even possible?
Regards
You can't make a function return from the function that called it in Javascript (or many other languages, afaik). You need logic in one() to do it. E.g.:
function one() {
return two() || "fail";
}
function one() {
return two();
}
You could do it, using a try-catch Block, if your function one anticipates a probable non-local-return as well as function two like this using exceptions:
function two() {
throw {isReturn : true, returnValue : "success"}
}
function one () {
try {
two()
} catch(e) {
if(e.isReturn) return e.returnValue;
}
return "fail";
}
, I believe.
function one() {
return two();
}