What does ?(question mark) and the !(exclamation mark) means in declaring these variables in typescript?
title?: string;
form!: FormGroup;
Is this the same as non-null assertion operator?
What does ?(question mark) and the !(exclamation mark) means in declaring these variables in typescript?
title?: string;
form!: FormGroup;
Is this the same as non-null assertion operator?