Each child in a list should have a unique "key" prop
To prevent ugly errors in your console when you loop through an array, React likes you to use a unique key for each child element.
We usually use the loop index. This is not advised for several reasons1, 2.
Instead try this…
Math.random().toString(36).substr(2, 9)
This will give you a (fairly) random 9-character alphanumerical string.
<ul>
{ items.map(x => <li key={ Math.random().toString(36).substr(2, 9) }>{x}</li> }
</ul>
This is useful for "throwaway" keys. If you're going to be referencing the keys in any way, you need to use a unique property (like an ID
or slug
).
Fin
onward-journeys module
Real. Simple. Syndication.
Get my latest content in your favorite RSS reader.
I use InoReader but you don't have to.
Comments
In almost all cases, the comments section is a vile cesspool of Reply Guys, racists, and bots.
I don't want to have to deal with that kind of hell so I don't have a comments section.
If you want to continue the conversation, you can always hit me up on Mastodon (which is not a vile cesspool of Reply Guys, racists, and bots).