Angular from Scratch, part 13: Looping over deeply nested arrays of objects

preview_player
Показать описание
Topics covered in this @jsFromScratch video:
✔️ Looping over an array of objects and another nested array of objects in Angular 13 (2022)
✔️ How to nest ngFor inside another ngFor in Angular
✔️ Using the ngIf directive in Angular
✔️ What's the purpose of ng-container and a practical example of its use

❤️ Subscribe for more free Web Development tips:

🎁 Subscribe to our mailing list to get free ebooks:
Рекомендации по теме
Комментарии
Автор

Hi,
I have a question.
I have an array of objects of the design
[{0:{name: 'foo', nick: 'bar'} {1:{name: 'foo', nick: 'doe'}{0:{name: 'foo', nick: 'john'}]
I want the value of the name to appear just once on a table column with the header "name" and in the column "nick", i want all the three values to come up.
How do I proceed with that?

rajeshkalita