Here is the structure I am working with:
function1 ()
{
A;
function2(){};
B;
}
Is there a way to make function2 return a result before executing B? Currently it is always A->B->function2
Any insights or suggestions would be greatly appreciated. Sincerely, Paxton.