export class HomePage {
constructor(public navCtrl: NavController,private storage: Storage, private sqlite: SQLite) {}
function1(){
this.item = [];
}
}
this code getting below error.
export class HomePage {
constructor(public navCtrl: NavController,private storage: Storage, private sqlite: SQLite) {}
function1(){
this.item = [];
}
}
this code getting below error.
Kindly do this.
export class HomePage {
item:any; //define your item here;
constructor(public navCtrl: NavController,private storage: Storage, private sqlite: SQLite) {}
function1(){
this.item = [];
}
}
thank you so much for your answer it works
Two things I would do differently:
any