According to the comments, it seems that you just want to click the new values ββin your Array form, and then just use map to do this and click on the new form controls:
setValue() { let cities_array = [1,2,3,4]; let arr = this.form.get('home_cleaning.cities').controls; cities_array.map(city => arr.push(new FormControl(city))) }
PS. Here, I assume that you have a typo, and that home_cleaning is actually a nested form group.
And to get the value just do:
this.form.get('home_cleaning.cities').value
source share