Angular

Angular Samples

Home

1. Create New Component
2. Component To HTML
3. @Input
4. Button Click Event
5. @Output
6. Template Variable
7. *ngFor
8. Safe Navigation Operator
9. *ngIf
10. Hidden Property
11. *ngSwitch
12. Service
13. Routing
14. Routing with Parameter
15. Router Link
16. Module
17. Lazy Loaded Module

Safe Navigation Operator

This will not throw an exception even though employee is undefined.

my-first-component.component.html


<div *ngFor = "let employee of employee1">
 {{employee?.id}} <br/>
 {{employee?.name}} 
<hr/>
</div>