Hi,
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