Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Lars Olof Berg
Lars Olof Berg
836 Points

Why is not the key included in the spread function?

Why do you need to add the key outside the spread function? Is there something special with a key?

      {props.planets.map( planet => 
        <Planet
          {...planet}
          key={planet.id}
        />      
      )}

1 Answer

Lauren Clark
Lauren Clark
33,155 Points

It's iterating through each item in the array by the key name, we need a key named "key" yet the array only contains "id" so we're essentially making the id available through props as "key" rather than "id". If we didn't do this, if you access planet.key, nothing would happen as this doesn't exist in the array. From what I understand, and have seen the prop need to be explicitly named "key" so it wouldn't work with "id" -- React needs the key prop.