i set variable ar at the first. like
export class HomePage {
ar:any;
...
...
constructor( ...){
ar=new Array();
...
this.loadEvent();
}
and then, on triggered function of constructor,
I tweaked above function to below
Why can't I put values from firebase to variable ar?