I'm working on a project which has front end app in Angular. After cast my response coming from back end API,I'am trying to display array data in table,if condition come true here is my array of data compte['ingroup'].
<ul class="nav nav-list " *ngFor=" let compte of comptes">
<label class="groupcompte" *ngIf="{{compte['ingroup']}}.lenght > 0" >
{{compte['ingroup']| json}}
</label>
</ul>
My question is about know how to get compte['ingroup'] lenght in my condition thank you