Challenge: Display Data Collections
Swipe to show menu
Task: Show a Product List
Let's handle the data obtained from the backend and ensure its proper rendering in a list format.
The task is:
- Utilize the
map()method to render an array of goods. - Ensure to fill the necessary gaps:
h2must contain the good's name (nameproperty);pmust contain the good's description (descriptionproperty);spanmust contain the string "Price:" and the good's price (priceproperty).
- Use theย
map()ย method to map over theยprops.goodsย array. - Ensure to set theย
keyย prop of theย<li>ย element to a unique value, such as the id property of the item. - Inside eachย
<li>ย element, use the following elements:- Anย
<h2>ย element to display the good's name. Access the name from the currentยitem; - Aย
<p>ย element to display the good's description. Access the description from the currentยitem; - Aย
<span>ย element to display the string "Price:" followed by the good's price. Access the price from the currentยitem.
- Anย
Everything was clear?
Thanks for your feedback!
Sectionย 2. Chapterย 7
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Sectionย 2. Chapterย 7