Function SomeFunction() myFunction01() myFunction02()EndFunctionFunction myFunction01() ;code hereEndFunctionFunction myFunction 02() ;code hereEndFunctionIn the above script would myFunction01() and myFunction02() functions be completed one after the other before SomeFunction() finishes? So if I'm relying on variables from 01 and 02 to be found to use in SomeFunction(), that would be possible?
Or would myFunction02() fire before myFunction01() finishes?