I have form array like skills = new FormArray([]); and it contains values of multiple inputs, if I debug controls level of skills I will be having such data:
console.log(this.skills.controls);
What I'm looking for is to get those values as array and send them by my other function to back-end.
PS: my problem is not sending data to back-end but to
get my array values as array.
Any idea?

this.skills.value?this.skillsis a FormArray - soconsole.log(this.skills.value)and you'll have your arrayskills = new FormArray([]);and I am testing your comment to see results.