React 19: The new updatesThis week, we will be talking about the new React 19 updates and hooks. Having gone through and using some of these new updates, I can only agree that it has simplified some of the rigorous activities developers go through when building apps, especia...Jul 29, 2024·5 min read
React Series: useEffectWelcome back to our React Series. I want to believe you had a good grasp of the useState hook in the last class. There is so much more hooks will do for you, and I believe as you continue with this series, you will learn a lot more about them. Today ...Apr 2, 2023·5 min read
React Hooks: useStateReact Hooks are the special functions that let us tap into React features in a functional component. As we all know, React is a powerful library that lets us build fast and reusable user interfaces. These interfaces have special features that we coul...Mar 29, 2023·6 min read
React Series: IntroductionTopics Introduction Why Use ReactWhat are ComponentsWhat is JSXPropsState. This is going to be a React series discussing React and Hooks. We will discuss an overview of React in today's topic and then proceed to discuss Hooks from the next article. I...Mar 25, 2023·5 min read
HTTP request: Fetch vs AxiosThe bedrock of any programming language is the ability to make requests from an API. The absence of this means we are operating a static non-dynamic application. Data fetching is key in software development, as the majority of the data we would be ne...Mar 22, 2023·6 min read
var, let and const.There were quite some feature changes in JavaScript ES6, and notable among them is the variable declaration keyword. These keywords have been game-changers in understanding the scope and concepts of declared variables. The var keyword is the oldest a...Mar 18, 2023·6 min read
Commonly Used String MethodsA String is a data type that is synonymous with all programming languages, and that is because it is the most frequently used data type. In JavaScript, String is used to holding text, and in most cases, these texts are variables. Strings are used to ...Mar 15, 2023·6 min read