Why do we need to add a unique key to each list item?
React uses keys to track each element uniquely for efficient updates. Without keys, React may re-render all items unnecessarily. See execution_table rows 2-5 where keys are assigned.
Can we use the array index as the key for list items?
Using index as key works for static lists but can cause problems if list items reorder or change. It's better to use a unique id if available. Here, index is used for simplicity (execution_table rows 2-4).
What happens if we forget to return the JSX element inside map()?
If map() callback does not return JSX, the output array will have undefined items, so React renders nothing or errors. In this example, each map callback returns <li> (execution_table rows 2-4).
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table at step 3, what is the key used for the second list item?
A0
B2
C1
Dundefined
💡 Hint
Check the 'Key Used' column at step 3 in execution_table
At which step does map() finish creating all list items?
AStep 4
BStep 5
CStep 6
DStep 7
💡 Hint
Look for the step where map() returns the full array in execution_table
If we remove the key attribute from <li>, what problem might occur?
AReact may inefficiently update the list causing bugs
BReact will throw a syntax error
CReact will render the list twice
DNothing, keys are optional
💡 Hint
Refer to key_moments about why keys are important
Concept Snapshot
Rendering lists in React:
- Use array.map() inside JSX to create elements
- Each element needs a unique key prop
- Keys help React track items for efficient updates
- Return JSX from map callback
- Render the array inside a container like <ul>
Full Transcript
Rendering lists in React means taking an array of data and turning it into a set of JSX elements that React can show on the page. We use the map() function on the array to create a new array of JSX elements. Each element must have a unique key property so React can keep track of them efficiently. In the example, a list of fruits is mapped to <li> elements with keys based on their index. React then renders these inside a <ul>. This process helps React update only the changed items when the list changes, improving performance and avoiding bugs.