Angular Tips - Use nonNullable: true to restore default values on reset
Form controls and groups are nullable by default in Angular, which means that the following example of FormControl value is not of type string:
normalFormControl = new FormControl('normal@sample.com')
If we try to read normalFormControl.value, we wi...
nhannguyen.hashnode.dev1 min read