Is it possible to pass two arguments with ngFor? Here is an example that I would like to achieve:
<mat-card *ngFor="let room of arr; let floor of floorArr">
<mat-card-content>
<h3>Room Number: {{room}}</h3>
<p>Floor: {{floor}}</p>
</mat-card-content>
</mat-card>
I need help figuring out the correct way to implement this. Can you assist me with this?