iterating hashmap angular

Solutions on MaxInterview for iterating hashmap angular by the best coders in the world

showing results for - "iterating hashmap angular"
Jana
07 Jul 2020
1<ul>
2    <li *ngFor="let recipient of map | keyvalue">
3        {{recipient.key}} --> {{recipient.value}}
4    </li>
5</ul>
6