A common beginner React question you’ll find on Stack Overflow is ‘why aren’t my elements displaying when i use the .map method?’ Funnily enough, it’s usually just a small mistake that causes this problem.
But before we dive into how we render lists in React, let’s first understand the map method and how its used in Javascript
The map() method basically creates a new array by calling a specific function on each element in the array it’s being performed on.
Let’s take a look at an example:
// 1.
const myArray = [1, 2, 3]
// 2.
const newArray = myArray.map(num => num + 1)
// 3.
console.log(newArray)
//Output: [2, 3, 4]
Let’s break down the example above:
NOTE**
a. You can use a normal function declaration inside the parenthesis instead of an arrow function if you choose to. Remember to include the return keyword to save the value to the new array. For example:
.map(function(num){
return num + 1
})
b. In the above example, we passed in only one argument which was ‘num’ to represent each element in myArray. This argument is required. But there are also additional arguments we can pass in if needed.
The index is often used as the second argument which will return the position of the current element in the array that’s being mapped. For example:
// 1.
const friends = ["Rob", "Sally", "Joe"]
// 2.
const friendsPositions = friends.map((friend, index) => `${friend} ${index}` )
// 3.
console.log(friendsPositions)
//Output: ['Rob 0', 'Sally 1', 'Joe 2']
In this example:
1. We declared the friends array
2. We mapped the friends array and we passed in two arguments:
friend – the item that represents each friend in the friends array
index – the position that represents each friend’s position
We then added a function that would return the template literal `${friend} ${index}`
3. We then log to the console the new array and we get the name of the friend and the position it is in the array. Remember that the first position in an array starts at 0.
React is a Javascript library so the map function can be used in exactly the same way if need be. When it comes to building dynamic lists, the map method is the usual way but with a slight difference.
Let’s take a look at an example:
const friends = ["Rob", "Sally", "Joe"]
<ul>
{friends.map((friend) => (
<li>{friend}</li>
))}
</ul>
Ok, so what’s going on here?
Like usual, we declare an array called friends that contains 3 elements.
Remember that React uses JSX so in order to display a list, we can use the <ul></ul> tags.
Now the rule is that in order to use Javascript inside JSX, we need to inject it inside curly braces { }. So we add the curly braces between the <ul></ul> tags and then we can start with our map method on our friends array.
Now one thing to note that is VERY important is what comes AFTER the fat arrow =>.
In our example above, notice that the parenthesis ( ) are used instead of your typical curly braces { }. This is where a lot of beginners in React make the mistake of adding the curly braces and then wonder why their list isn’t being displayed. The ( ) is used because, if you’re familiar with React, they represent the Render ( ) method which uses parenthesis because it is displaying something.
Then inside the parenthesis, we add the <li><li> tags and again we need to inject inside the JSX the Javascript argument that we passed into the function which represents each individual friend. How do we inject Javascript inside of JSX? That’s right. We add the curly braces {} and pass in the friend.
You’ll then see the following list printed on the screen:
Don’t forget to close off your parenthesis and curly braces here
NOTE**
Although this is correct and you’ll see this list displayed on your screen, you’ll see in the console that React is providing the following warning:
Each child in a list should have a unique “key” prop.
A “key” is basically a special string attribute you should include when you’re creating lists of different elements and these keys help React identify keep track of these elements in the event that they’re ever removed, or added or changed somewhere in the app. Each key needs to be unique and what most developers do is they use a combination of a string and the index of the element just like we discussed in the Javascript section above.
Let’s modify the example above to include the key this time:
const friends = ["Rob", "Sally", "Joe"]
<ul>
{friends.map((friend, index) => (
<li key={`Friend-${index}`}>{friend}</li>
))}
</ul>
So this time we passed in a second argument ‘index’ which gives us the position of each element in the friends array. Then inside the <li> element, we added the key attribute where we created a unique key. Each list item would have their key as “Friend-” followed by the position of that element. For example, the “Rob” list item would have the key as “Friend-0” because “Rob” sits at position 0 in the friends array.
So now you know how the map method is used to render lists in React.
Just remember – The most common reason why a React list is not rendering is because someone forgot to use parenthesis ( ) to render the list instead of curly braces { }
Hope this helped and happy coding!
02 Feb 2025・generalweb development
Why Your Business Needs a Website in 2025
In 2025, having a business without a website is like having a storefront with no sign—potential customers won’t know you exist. With more people relying on the interne...
Read more
31 Oct 2024・react native
How to style the status bar of an iOS app in React Native
A status bar appears along the upper edge of the mobile screen and it displays information about the device’s current state, like the time, the cellular carrier, and a...
Read more
20 Aug 2024・generaljavascript
Why can’t I understand Javascript? Advice on how to learn programming from a self taught freelance developer.
Javascript is considered one of the most popular programming languages and has grown significantly in demand over the last few years. It’s usually the 3...
Read more
19 Jun 2024・javascript
Javascript equality comparison operators — What’s the difference between = = vs = = = ?
When I first started using Javascript comparison operators in my code, I was often confused as to which operator to use when comparing values. I did the usual stack ov...
Read more