Using Dependencies Array with useEffect Hook
Learn why you need a 'dependencies array' with the “useEffect” hook and what difference it makes for the “useEffect” behavior.
Examine an example without dependencies array
Generally, the dependencies array with useEffect
to improve rendering performance.
Look at the following exercise to help you understand how code is working without the dependencies array.