useMemo vs useCallback in React: Difference and Trade Off
Explore useMemo vs useCallback in React with examples. Learn the key differences between useMemo and useCallback, use cases, and when to choose one over the other in React applications.
Anuj Sharma
Last Updated Jun 19, 2026

useMemo and useCallback are two important hooks in React that help optimize performance by memoizing values and functions, respectively. While they may seem similar, they serve different purposes based on the data they handle.
In this blog, we delve into finding out the key differences between useMemo vs useCallback hook in react,
Table of Content
Understanding useMemo Hook
useMemo is used to memoize values or computations and recompute them only when one of the dependencies has changed. It is helpful when you need to calculate a value that is computationally expensive and should not be recalculated on every render.
For example, consider a scenario where you want to calculate a factorial of a number:
const factorial = useMemo(() => {
return calculateFactorial(number);
}, [number]);
- It takes a function that computes the value as the first argument.
- The second argument is an array of dependencies. The value will only be recomputed when these dependencies change.
Understanding useCallback Hook
useCallback is used to memoize functions, primarily for optimizing performance in child components that rely on reference equality. It returns a memoized version of the callback function that only changes if one of the dependencies has changed.
For example, in a scenario where you have a handler function for a button click:
const handleClick = useCallback(() => {
console.log('Button clicked!');
}, []);
- It takes a callback function as the first argument.
- The second argument is an array of dependencies. The callback will only be recreated if any of these dependencies change.
useMemo vs useCallback: What is the Difference
| Area | useMemo | useCallback |
|---|---|---|
| Usage | Used to memoize a value | Used to memoize a function |
| Dependencies | Depends on an array of dependencies | Depends on an array of dependencies |
| Return | Returns a memoized value | Returns a memoized callback function |
Key Differences
- useMemo: Memoizes a value and returns it. It helps in avoiding expensive calculations on every re-render.
- useCallback: Memoizes a function and returns it. Useful when passing callbacks to child components to prevent unnecessary re-renders.
Code Example
import React, { useMemo, useCallback, useState } from 'react';
const Component = () => {
const [count, setCount] = useState(0);
// Memoize value
const memoizedValue = useMemo(() => {
return count * 2;
}, [count]);
// Memoize Function
const memoizedCallback = useCallback(() => {
setCount(count + 1);
}, [count]);
return (
div>
p>Memoized Value: {memoizedValue}/p>
button onClick={memoizedCallback}>Increment/button>
/div>
);
};
export default Component;
Use Cases
- useMemo: When you have a computationally expensive operation that depends on specific values and you want to avoid recalculating that value on every render.
- useCallback: When passing callbacks to child components, and you want to prevent unnecessary re-renders by memoizing the function.
Understand When to Choose One Over the Other
Choose useMemo when you need to memoize a value that depends on specific dependencies to avoid unnecessary recalculations. Use useCallback when you need to memoize a function, especially when passing it as a prop to child components, to prevent them from re-rendering on parent component updates.
Understanding the differences and use cases of useMemo and useCallback can significantly improve the performance and maintainability of your React applications.
Further Reading
A seasoned Sr. Engineering Manager at GoDaddy (Ex-Dell) with over 12+ years of experience in the frontend technologies. A frontend tech enthusiast passionate building SaaS application to solve problem. Know more about me 🚀
Learn Next
Featured
100+ Top React JS Interview Questions And Answers
Comments
Be the first to share your thoughts!
No comments yet.
Start the conversation!
Share your expertise
Publish a blog or quick notes on topics you know well — your write-up could be the answer someone needs before their next frontend interview.
Build your portfolio
Help the community
Sharpen your skills
Earn goodies
Other Related Blogs
Top 30 Frequently Asked React Hooks Interview Questions (2026)
Anuj Sharma
Last Updated Jun 27, 2026
Discover the top 30 most-asked React Hooks Interview Questions, with detailed explanations and code examples for quick revision.
Core React Hooks Cheat Sheet - Explain All React Hooks with Examples
Anuj Sharma
Last Updated Jun 27, 2026
Quick cheat sheet to revise all 13 Core React Hooks with explanations and code examples. Comprehensive guide for Core React Hooks.
8 React Hooks Comparisons: Must Know for Frontend Interviews
Anuj Sharma
Last Updated Jun 26, 2026
Explore the Most Common React Hooks Comparisons and Trade-Offs to understand the differences between Hooks & When to use one hook over another.
Common Pitfalls of useEffect Hook: Must Know for React Devs?
Anuj Sharma
Last Updated Jun 24, 2026
Understand common pitfalls of the useEffect hook when implementing asynchronous operations in React applications effectively.
useMemo vs useEffect Hooks in React: Difference & Trade-Off
Anuj Sharma
Last Updated Jun 24, 2026
Explore useMemo vs useEffect in React with examples. Learn key differences between useMemo and useEffect, use cases, and when to choose one hook over the other in React applications and interviews.
Difference between React useId Hook and generating IDs using Math.random?
Anuj Sharma
Last Updated Jun 24, 2026
Understand the difference between using useId() vs generating IDs using Math.random() to better know the practical use-case of useId Hook in react applications.
useDeferredValue vs useTransition: Difference and Trade-Off
Anuj Sharma
Last Updated Jun 20, 2026
Explore useDeferredValue vs useTransition in React with examples. Learn key differences between useDeferredValue and useTransition, use cases and when to choose one over the other in React applications.
useRef vs useState in React: Difference & Trade-off
Anuj Sharma
Last Updated Jun 19, 2026
Explore useRef vs useState in React with examples. Learn the key differences between useRef and useState, use cases, advantages, and disadvantages, and when to choose one over the other in React applications.
