Kurssisisältö
React Tutorial
React Tutorial
useMemo()
useMemo
is a hook in React that allows you to memorize a value. It is a way to optimize the performance of your application by avoiding unnecessary re-computations.
Here's an example of how to use useMemo
:
javascript
In this example, the value of expensiveComputation
is computed and cached using useMemo
. The computation only happens if the count value changes. This can be a significant optimization if the computation is expensive, because it avoids re-computing the value on every render
.
The first argument to useMemo
is a function that returns the value you want to memoize. The second argument is the dependencies
array, which works in the same way as the dependencies array in useEffect
. If you pass an empty array ([])
, the value will only be computed once, on the initial render. If you pass an array of values, the value will be re-computed anytime one of those values changes.
There are a few nuances to be aware of when using useMemo
:
The value returned by the function passed to
useMemo
should be a primitive value, like a number or a string. It should not be an object or a function, because the reference to the object or function will change on every render, which will cause the value to be re-computed.The function passed to
useMemo
should be pure, meaning it should not have any side effects and should always return the same value for the same input.If you don't specify a dependencies array, the value will be re-computed on every render. This can be expensive and may cause performance issues, so it's important to be selective about which values you include in the dependencies array.
Kiitos palautteestasi!