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...Cloud Computing
A few years ago, the basic concept of the cloud was derided by reducing it to the idea of “someone else’s computer,” a saying that decorates...
Continue reading...React Lifecycle of Components
What is the Lifecycle of Components? Components are created and mounted on the DOM, grow by updating, and then die to unmount on DOM. This is...
Continue reading...JavaScript Callback Function
What is a callback function? “A callback is a function that is passed as an argument to another function” Which is then invoked inside the outer...
Continue reading...