export class ResultComponent { students: AdmissionFormData[] constructor(private adStudent: AdmissionFormService) { adStudent.adFormGet().subscribe( x => this.students = x ) } onSubmit(value) { } } In …
angular angular-arraysI have two array called 'persons' and 'persons2', The 'persons2' array would to be copy of 'persons' array, …
javascript arrays angular javascript-objects angular-arraysI have a json data set with arrays from my ASP.net Core web api, i want to show that …
angular angular-arrays