When displaying data from an array in a table, is there a specific condition I can use to prevent iterating through the array when it's empty?
<tr *ngFor="let something of (adunit.unit_price)">
<td>{{something.updated_date | date : 'medium' }}</td>
<td>{{ something.value }}</td>