My form has an array called skills = new FormArray([]);
which contains values from multiple inputs. When I debug the controls level of skills
, I see data like this:
console.log(this.skills.controls);
https://i.sstatic.net/zTCCv.png
I am trying to extract those values as an array and pass them to my backend function.
PS: My issue is not sending data to the backend, but how to
.retrieve my array values as an array
Any suggestions?