Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 18, 2022 06:12 am GMT

How to use map() to iterate over array in ReactJS

map() is used in reactjs to iterate over an array and display the content on frontend. It is a standard JavaScript function that could be called on any array. In current example we are working on Functional component.

First we need to have an array that we need to render. Like this:

Image description

Now we are going to loop through data array, that gives access of each item in the array and can return a JSX element.

Image description

Here we created a component called MapExample, and passed props to it. props will contain data that would be used in this component, which will talk later.

Here we are using map() on data array.
The key prop is used to uniquely identify each item. It is used to give each element a unique identifier. We should always include 'key' prop for each item in the list.

And Bingo! We are done. Now you can display data from any array using map() in react functional component.

Hope that helps!


Original Link: https://dev.to/priyankdeep78/how-to-use-map-to-iterate-over-array-in-reactjs-4280

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To