Frontend Development ยท React
How would you answer an interview scenario involving memoization with useMemo and useCallback in React?
If a large filtered list is expensive to recompute and only depends on items and a filter, use useMemo for the filtered result after confirming the calculation is a bottleneck.