JRJatin Rankainjatin-ranka.hashnode.dev·Jun 27, 2021 · 2 min read✅ Write cleaner code using Functional ProgrammingWhat is it? Functional programming is just a software engineering paradigm/convention of writing code. It is purely independent of the language in which it is written (ie) it can be applied to any language. Why is it required? To make code more read...00
JRJatin Rankainjatin-ranka.hashnode.dev·Jun 25, 2021 · 2 min readWhat is Async/await in JS and why should you use it?In this blog post, we are going to discover: What is Async/await? Why is it required? Key points Prerequisites: Basic knowledge of promises. Before diving into async/await, let's see why is it required? fetchAPi .then((data) => { // p...00