Skip to content

React Hooks Quiz

useState, useEffect, useContext, useMemo, useCallback, and custom hooks.

intermediate
Question 1 of 7
Question 1 of 7react

What does the dependency array of useEffect control?

react
useEffect(() => {
  fetchData(id);
}, [id]); // <-- this array