I am trying to learn Angular and I have seen ngFor used to go through arrays, but I can't seem to find anything that simply repeats an html element n amount of times based on a number.
So if I have in the TS file of the component
public rounds: number = 5;
and the HTML
<tr *ngFor=""></tr>
I want the tr to repeat 5 times or however many times based on the value of rounds.