VGVivek Gudipudiinvivekgudipudi.hashnode.dev·Jul 22, 2022 · 4 min readAsync and Await in JSWhat is Async and Await ? Async/Await is basically an extension to promises in Javascript. It acts as a syntactical sugar wrapped around making promises which makes it easier to work with. Using async/await helps developers to read the code in a sync...00
VGVivek Gudipudiinvivekgudipudi.hashnode.dev·Jul 22, 2022 · 2 min readCallbacks in JavascriptFunctions are called first-class citizens in Javascript which means you can pass it to another function as an argument and this function which you pass as an argument is known as a callback function. function outer(callback){ } outer(function inner...00