Question Bank

React Data Fetching and Effects Quiz

Difficulty: Medium

Four drills on fetching data with useEffect, avoiding stale closures, and cleaning up in-flight requests when the component unmounts or the input changes.

Question Bank
/

React Data Fetching and Effects Quiz

React Data Fetching and Effects Quiz

Four drills on fetching data with useEffect, avoiding stale closures, and cleaning up in-flight requests when the component unmounts or the input changes.

Question Bank
Medium
JavaScript
4 questions
quiz
react
hooks
js-fetch-api

422 views

3

Write a <UserCard userId={id} /> that fetches /api/users/:id and shows the name. Handle loading, error, and the id-changes case.