—
asyncFunction(param1, param2, callback)
// someOtherStuff...
asyncFunction
is called, but you don't wait for it to complete.
someOtherStuff
continues to happen, and whenever
asyncFunction
is done running, it will call
callback
which is also a function
Message permanent page