0 votes
in ReactJS by

How to loop inside JSX?

1 Answer

0 votes
by

You can simply use Array.prototype.map with ES6 arrow function syntax. For example, the items array of objects is mapped into an array of components:

<tbody>
  {items.map(item => <SomeComponent key={item.id} name={item.name} />)}
</tbody>

You can't iterate using for loop:

<tbody>
  for (let i = 0; i < items.length; i++) {
    <SomeComponent key={items[i].id} name={items[i].name} />
  }
</tbody>

This is because JSX tags are transpiled into function calls, and you can't use statements inside expressions. This may change thanks to do expressions which are stage 1 proposal.

Related questions

0 votes
asked Nov 4, 2023 in ReactJS by AdilsonLima
0 votes
asked Nov 26, 2019 in ReactJS by AdilsonLima
...