Specifically, how does it differ from the default ( async: true ) ?
async: true
In what circumstances would I want to explicit set async to fals
async
fals
If you disable asynchronous retrieval, your script will block until the request has been fulfilled. It's useful for performing some sequence of requests in a known order, though I find async callbacks to be cleaner.