Home » Blog

Blog

usereducer hook

useReducer hook in React

When building complex applications in React, managing state becomes a critical aspect of our app’s behavior. Sometimes, managing state with the simple useState hook is sufficient, but as our application grows, we might need a… Read More »useReducer hook in React

react custom hooks

React Custom Hooks

When building React applications, we often find ourselves writing the same code over and over. For example, we might need to track whether an element is being hovered over, or we might want to know… Read More »React Custom Hooks

operators

C# – Operators – Part 5

We will learn about the various operators available in C#. Arithmetic Operators These help to carry out basic arithmetic operations on numbers. Arithmetic Operators Name + Addition – Subtraction * Multiplication / Division % Modulus… Read More »C# – Operators – Part 5