Suppose I write some JavaScript that performs an AJAX call with myCallback as a callback method to execute when the AJAX succeeds.
Suppose then that some other JavaScript method called myFunction is being invoked on my page when myCallback is invoked asynchronously.
Does one operation take precedence over the other? Do they both run at the same time? What happens?