Skip to content

How to repeat displaying something in JSX

New Course Coming Soon:

Get Really Good at Git

I had the need to repeat something in JSX.

The use case was this, I had a review expressed from 1 to 5 and based on the value I wanted to display some stars, from 1 to 5 stars.

So I used this snippet:

<p>
{[...Array(rating)].map(() => '⭐️ ')}
</p>
→ Get my React Beginner's Handbook
→ Read my full React Tutorial on The Valley of Code

Here is how can I help you: