Using then() vs Async/Await in JavaScript
When making async requests, you can either use then() or async/await; both are very similar.
The difference is that in an async function, JavaScript will pause the function execution until the promise settles. With then(), however, the rest of the fu...
furiousdev.hashnode.dev1 min read