Data is all around us. It is estimated that each day, a staggering 2.5 quintillion bytes of data are created. With a number so mind-boggling, it’s...
Continue reading...Introduction to React useReducer
useReducer is a React Hook that gives us more control over state management than useState, making it easier to manage complex states. I Its basic structure...
Continue reading...Promises in Javascript
What is a Promise? JavaScript is a single-threaded programming language, which means only one thing can happen at a time. Before ES6, we used callbacks to...
Continue reading...React 18 Features
React 18 Features React 18 was released in March 2022. This release focuses on performance improvements and updating the rendering engine. React 18 Feature Quick Guide...
Continue reading...React Behind The Scenes
JSX stands for JavaScript Extension which allows us to write javascript function in HTML. The fundamental syntax of JSX is: React.createElement(component, props, …children) function. But...
Continue reading...