I've got the next line of code in my html template file:
<span *ngIf="!signupForm.get('email')!.valid && signupForm.get('email')?.touched">
The 1st condition of the if has !. and the 2nd condition has ?. .
Both works just fine and when I don't use ? or ! it gives me the error: Object is possibly 'null'.
So does it really matter which one I use?