Async
↔ of process to occur in parallel, independently
aka Asynchronous, Asynchronicity
Non-Blocking
of code to not pause execution for rest of Code sequence
async
JS Keyword to prepend function to allow Asynchronous Code
AJAX
(process) to Asynchronous Data Fetch from Server (via clunky legacy XHR methods)
Asynchronous Model
(model) to handle multiple things happen Concurrently
Asynchronous Code
Non-Blocking Code to defer execute, wait in Callback Queue & move to Call Stack once background task Settled
image loading is usually async
const img = document.querySelector(".dog");
img.src = "dog.jpg"
Setting image source attribute loads image in background
References
indexedDB
↔ Web API indexed database built into Browser with Async access[
Non-Blocking](non-blocking)
↔ Node API tends to be Async by defaultAMD Module
↔ Async Module Definition format used in Browserexperiement_use
↔ React API to allow Async Data Fetch inside Server ComponentData Fetch
↔ (process) to AsyncGET
data from ServerWebhook
↔ Listener for Async web event, to push real-time updates to App/BackendRender Phase
↔ (process) to Async check all elements, one by one, collect changesAJAX
↔ (process) to Asynchronous Data Fetch from Server (via clunky legacy XHR methods)