Is there a way to ensure that three ajax calls are allowed to run concurrently, but have the browser wait until all of them have completed before continuing? Setting async as false for each call can be time-consuming since they then cannot run at the same time. Is there a solution that allows concurrent execution while still ensuring completion before moving on?