Articles tagged with JavaScript

Use "await" when you really need the results

Posted on

We have seen two or more async function calls in a sequence during our javascript years. While this works fast in local enviroments, they extend runtimes in production environments where these calls bring results from cloud services or remote locations.

Consider the following scenario: You want to fetch some results …