* FOR SOFTWARE CONSULTING CHECK http://hackerhitch.com/ *
My code is structured as follows:
IF (something) {
..stuff
..Asynchronous Function Call
}
ELSE (something) {
..stuff
..Asynchronous Function Call
}
..more stuff
Assume that the IF condition is met, the code fulfills the "stuff", and then proceeds to call the asynchronous function. Will it just make a call, but exit the IF statement and execute “more stuff” on average, assuming waiting for the asynchronous function call to complete?
OR
Does it complete the completion of an asynchronous function call, and then continue with “more things,” like a regular IF statement block does.
In the previous case, any recommendations on how to provide an asynchronous function call are completed before it exits the IF block?
** , , , , , , , , 50 ELIF, 50 , IF.
!