useMemo Hook

This post is a introduction to react useMemo hook ,its working & use case.So let’s get started understanding useMemo with code and video output.useMemo is a React hook that memorizes the output of a function.useMemo re-computes the memorized value when one of its dependency changes.

ReactJS – useCallback Hook

This post is about introduction to React useCallback hook.useCallback returns a memorized version of the callback that only changes if one of the dependencies has changed.For better understanding go throught the entire post & video!!!

ReactJS – useReducer Hook

This post is about small introduction to useReducer Hook.useReducer is usually preferable to useState when you have complex state logic that involves multiple sub-values or when the next state depends on the