I got url which contains data arrays as json. I want to get and use all of the elements in it :
By doing this, i get everything and nothing specific. For example : How to get data.name or data.price.... ?
ngOnInit() {
this.http.get('this.url').subscribe(data => {
console.log(data);
})