I'm working on a angular cli project , i have a method that evaluates multiple https request .`
this.files = this.http.get("assets/L10n/customer.json")
.map(res => res.json())
.subscribe(data => console.log(data));
}
this.files2 = this.http.get("assets/L10n/customer2.json")
.map(res => res.json())
.subscribe(data => console.log(data));
}
I want to return this.files and this.files2 as an array .Any help is appreciated`