What is Non null type assertion operator?
You can use the non-null type assertion operator to suppress the Object is possibly 'undefined' error. In the following example, the user and contact properties are always set together, implying that contact is always non-null if user is non-null. The error is suppressed in the example by using contact!.email.
@Component({selector: 'my-component',template: '<span *ngIf="user"> {{user.name}} contacted through {{contact!.email}} </span>'})class MyComponent {user?: User;contact?: Contact;setData(user: User, contact: Contact) {this.user = user;this.contact = contact;}}
February 09, 2022
148
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular