Browsers running javascript is single threaded, how can we make AJAX calls in the backgroung?
Sigiloso
JavaScript is single threaded, but AJAX is *asynchronous* (by default), so it runs in a background. If we need another thread, we can use web workers.