Javascript async and synchronous ajax ops -
if have synchronous ajax call running, , asynchronous call made while happening (via settimeout() ) second call stop/interupt/have impact on first call?
javascript single-threaded. result settimeout
calls can fire while there nothing else running. fire, once synchronous ajax call completes , function made ajax request yields control returning.
Comments
Post a Comment