1. 9
    Display UI for List Items in JSX with Map
    2m 18s

Display UI for List Items in JSX with Map

InstructorAndy Van Slaars

Share this video with your friends

Send Tweet

Just about every application needs to render a list of values at some point. Since most of the work we do in React is "just JavaScript", we'll use standard, JavaScript array methods to handle that. In this lesson, we'll iterate over a list of objects with the Array.prototype.map method and for each item, we'll render the corresponding JSX for that item's UI. We'll also cover the key prop, which React will use to optimize how it handles changes to the list when rendering.