“Usememo vs Usecallback” Kode Jawaban

Usecallback vs Usememo

useCallback and useMemo -
  
  both for optimization in react.
  
useCallback - caches a callback (function) to keep its previous reference.
            - referential equality between renders
            - if function is passed as props, will not re-render the component if wrapped with react.memo
            - since function reference did not change


useMemo     - similar to useCallback but this hook caches a value or result
		    - does no recompute if dependency array did not change resulting to optimized performance
            
Runtime Terror

Usememo vs Usecallback

---- useMemo vs useCallback -----------------------------------------

useMemo: memoize A CALCULATION RESULT between a function's calls
and between renders.

useCallback: memoize A CALLBACK ITSELF (referential equality) 
between renders.

---------------------------------------------------------------------
KostasX

Jawaban yang mirip dengan “Usememo vs Usecallback”

Pertanyaan yang mirip dengan “Usememo vs Usecallback”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya