10 JavaScript & React questions you might encounter in your next front-end interview.Jan 3, 2023·9 min read
Workout planner using React JSIn this blog post, I would like to walk you through a workout planner web application built using React JS. Other npm packages used in this application are React-Router-Dom, Axios, and material UI. I have used ExerciseDB API from Rapid API to fetch t...Oct 7, 2023·2 min read
Everything you need to know about APIAPI stands for Application Programming Interface. It acts as a mediator and facilitates communication between two applications. An API is basically a set of rules/protocols which sends a request to a database and retrieves data from it. This mechanis...Aug 19, 2022·2 min read
Prop-drilling, state management & useContext()While working on applications in React, we generally encounter props which help us in extracting & rendering data across the components. We use props to keep ourselves away from the DRY (do not repeat) syndrome. During the course of our development, ...Aug 6, 2022·2 min read