React UseEffect As LifecyclesIf you ever check a react codebase with functional components, you’ll notice two words used widely in the project. useState and useEffect…Nov 16, 2022Nov 16, 2022
Spread and Rest Operator in JavaScript(…) this operator is known as both spread and rest operator in JavaScript. Yes it is only one operator but it has two names. It depends on…Oct 10, 2021Oct 10, 2021
Map, Filter and Reduce In JavaScriptFrom ES6 version of JavaScript; map, filter and reduce function have been introduced in arrays. Which has become essential parts of life…Nov 23, 2020Nov 23, 2020
Prototype in JavaScriptPrototype is an important concept of JavaScript. Prototype is a property that points the object. It is used for inheriting property from…Oct 27, 2020Oct 27, 2020
Closures in JavaScriptJavaScript has some very features which sometimes makes the newbies scared. One of them is closures. It is one of the unique features of…Oct 14, 2020Oct 14, 2020
Async-Await In JavaScriptAsync-Await is a very important feature of JavaScript. By default, all the javaScript operations are synchronous.Oct 14, 2020Oct 14, 2020
Callback and Promises in JavaScriptIn JavaScript, functions are first class objects. Which means they can be passed as arguments, they can have properties and methods like…Oct 9, 2020Oct 9, 2020
TypeScript Type BasicsTypeScript is nothing but JavaScript. TypeScript needs to be compiled but JavaScript does not. Also we can store any type of data in a…Oct 7, 2020Oct 7, 2020
Synchronous Blocking JavaScript: Problems and Its Solutions(Asynchrous Non-Blocking Way)JavaScript is a single threaded language. Which means it performs one operation at a time. When it performs an action it does not perform…Sep 24, 2020Sep 24, 2020