Bentuk reaktif mendapatkan nilai kontrol

/*-----Angular reactive forms-----*/
// declare a form with properties i.e. name
this.form = this.formBuilder.group({
    name: ['', Validators.required]
});
// Get value
this.form.get('name').value
Anass Azeroual