I am doing the following, trying to check if addressDescription contains the word Maple street. Receiving the following error, how would this be fixed?
<app-address-mailing *ngIf="message.addressDescription.indexOf('Maple') > -1"></app-address-mailing>
AddressMailingComponent.html:21 ERROR TypeError: Cannot read property 'indexOf' of undefined
Resource below was not working, plus its older, new syntax is ngIf not ng-if
*ngIf="message.addressDescription?.indexOf('Maple')with a nullable operator