|
|
|
|
|
by linkdd
1529 days ago
|
|
In Javascript, a Promise is started as soon as it is created. In other words, this is not the `await` that starts the Promise. If the first await is the slowest, the second one will return immediately (like calling .then on an already resolved promise). |
|