Skip to content

Instantly share code, notes, and snippets.

@Tanver-Hasan
Created July 29, 2018 10:39
Show Gist options
  • Save Tanver-Hasan/bec4ef4e79a72a1b3232cbe9cd049cfb to your computer and use it in GitHub Desktop.
Save Tanver-Hasan/bec4ef4e79a72a1b3232cbe9cd049cfb to your computer and use it in GitHub Desktop.
curtomerForm: FormGroup;
constructor(public fb: FormBuilder) { }
ngOnInit() {
this.customerForm= this.fb.group({
firstName: [''],
lastName: [''],
mobiles: this.fb.array([this.buildNumber()])
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment