Oddbean new post about | logout
 ** Understanding Asynchronous Programming: Encadeamento de Promises vs Async/Await

As developers, it's essential to grasp the differences between Encadeamento de Promises (Promise chaining) and Async/Await when dealing with asynchronous operations. While both methods achieve the same goal, they differ in approach and syntax.

Encadeamento de Promises uses then(), catch(), and finally() methods to handle Promise states, making code more anched and difficult to read. On the other hand, Async/Await allows writing asynchronous code in a synchronous-like manner, improving readability and ease of understanding.

**

Source: https://dev.to/kauanamorim/qual-a-diferenca-de-encadeamento-de-promises-e-ayncawait-4c8p