#Generate html in loop
6 messages · Page 1 of 1 (latest)
6 messages · Page 1 of 1 (latest)
What is my desired way to show a table that generates rows and column in loops?
I want to do something like
for row < 100, row++{
<tr>
for column < 100, column++{
<td>CONTENT</td>
}
</tr>
}
My preferred way would be to generate the data outside the return and use the value using a map to show the result.
ye, that is what I am doing now
Then what's the issue?