public products:any=;
loadPeople(){
this.remoteService.load()
.then(data => {
console.log(data);
this.people = data;
this.people.sort((x,y) => new Date(x.start_time).getTime() - new Date(y.start_time).getTime());
this.products=this.people;
});
when ı write the this.products[2] its giving error “2” "is not defined. I just make push data in to products array