I don't know if it's the Angular update, but I notice that it asks to initialize variables, like: A "String" asks to put "", a number to put "0"... But what about when it's a "FormGroup component"? How do I resolve this?
public productForm : FormGroup ; This returns me an error.
I saw that there is an option that puts a "!" at the end of the variable, like this:
public productForm! : FormGroup ;
What's it for?