For example, lets say I make a function called "foobar", and inside foobar are calls to asynchronous functions. For example, it might look like this:
function foobar() {
// asynchronous function here.
// asynchronous function here.
}
Now, if I call foobar() five times like this:
foobar();
foobar();
foobar();
foobar();
foobar();
Will it only fire two asynchronous functions at a time?